| 1 | <?php |
||
| 9 | class ThreeGreenTestStub extends \PHPUnit_Framework_TestCase |
||
| 10 | { |
||
| 11 | public function testGreenOne() |
||
| 12 | { |
||
| 13 | $this->assertTrue(true); |
||
| 14 | } |
||
| 15 | |||
| 16 | public function testGreenTwo() |
||
| 17 | { |
||
| 18 | $this->assertTrue(true); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testGreenThree() |
||
| 22 | { |
||
| 23 | $this->assertTrue(true); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |