Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: MultiDependencyTest.php
<?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); } }