public static function ParentSuite::suite in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/Regression/783/ParentSuite.php \ParentSuite::suite()
File
- vendor/
phpunit/ phpunit/ tests/ Regression/ 783/ ParentSuite.php, line 6
Class
Code
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('Parent');
$suite
->addTest(ChildSuite::suite());
return $suite;
}