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