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

SmokeTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testFunctionalTests() 0 5 1
A explosionProvider() 0 6 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