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