Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / Regression / GitHub / 765 / Issue765Test.php
1 <?php
2 class Issue765Test extends PHPUnit_Framework_TestCase
3 {
4     public function testDependee()
5     {
6         $this->assertTrue(true);
7     }
8
9     /**
10      * @depends testDependee
11      * @dataProvider dependentProvider
12      */
13     public function testDependent($a)
14     {
15         $this->assertTrue(true);
16     }
17
18     public function dependentProvider()
19     {
20         throw new Exception;
21     }
22 }