Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / DependencyFailureTest.php
1 <?php
2 class DependencyFailureTest extends PHPUnit_Framework_TestCase
3 {
4     public function testOne()
5     {
6         $this->fail();
7     }
8
9     /**
10      * @depends testOne
11      */
12     public function testTwo()
13     {
14     }
15
16     /**
17      * @depends testTwo
18      */
19     public function testThree()
20     {
21     }
22 }