D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
Filename :
DependencyFailureTest.php
back
Copy
<?php class DependencyFailureTest extends PHPUnit_Framework_TestCase { public function testOne() { $this->fail(); } /** * @depends testOne */ public function testTwo() { } /** * @depends !clone testTwo */ public function testThree() { } /** * @depends clone testOne */ public function testFour() { } }