D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
Filename :
MultiDependencyTest.php
back
Copy
<?php class MultiDependencyTest extends PHPUnit_Framework_TestCase { public function testOne() { return 'foo'; } public function testTwo() { return 'bar'; } /** * @depends testOne * @depends testTwo */ public function testThree($a, $b) { $this->assertEquals('foo', $a); $this->assertEquals('bar', $b); } }