D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
phpunit
/
phpunit
/
tests
/
Regression
/
Trac
/
783
/
Filename :
ParentSuite.php
back
Copy
<?php require_once 'ChildSuite.php'; class ParentSuite { public static function suite() { $suite = new PHPUnit_Framework_TestSuite('Parent'); $suite->addTest(ChildSuite::suite()); return $suite; } }