class ParentSuite in Zircon Profile 8
Same name and namespace in other branches
Hierarchy
- class \ParentSuite
Expanded class hierarchy of ParentSuite
File
- vendor/
phpunit/ phpunit/ tests/ Regression/ 783/ ParentSuite.php, line 4
View source
class ParentSuite {
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('Parent');
$suite
->addTest(ChildSuite::suite());
return $suite;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ParentSuite:: |
public static | function |