Completed
Push — master ( 9268a1...16f441 )
by Michael
06:26 queued 02:08
created

SmokeTest::testContainerServices()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 11
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 11
rs 9.4285
cc 3
eloc 5
nc 2
nop 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A SmokeTest::testFunctionalTests() 0 5 1
1
<?php
2
namespace Tests\AppBundle\Controller;
3
4
class SmokeTest extends BootstrapTestSuite
5
{
6
	/**
7
	 * @dataProvider explosionProvider
8
	 */
9
	public function testFunctionalTests($path, $status = 200)
10
	{
11
		$this->setupTest($path);
12
		$this->globalTests($status);
13
	}
14
15
	public function explosionProvider()
16
	{
17
		return array(
18
			array('/'),
19
		);
20
	}
21
}
22