Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
4 | class TableTest extends TestCase |
||
5 | { |
||
6 | public function testProducerFirst() |
||
10 | } |
||
11 | |||
12 | public function testProducerSecond() |
||
13 | { |
||
14 | $this->assertTrue(true); |
||
15 | return 'second'; |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @depends testProducerFirst |
||
20 | * @depends testProducerSecond |
||
21 | */ |
||
22 | public function testConsumer($a, $b) |
||
23 | { |
||
24 | $this->assertSame('first', $a); |
||
25 | $this->assertSame('second', $b); |
||
26 | } |
||
27 | |||
28 | public function testprepare(){ |
||
31 | } |
||
32 | } |
||
33 |