Esempio n. 1
0
 * @copyright 2008-2010 Manuel Pichler. All rights reserved.
 * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
 * @version   Release: @package_version@
 * @link      http://pdepend.org/
 */
class PHP_Depend_Code_Filter_AllTests
{
    /**
     * Test suite main method.
     *
     * @return void
     */
    public static function main()
    {
        PHPUnit_TextUI_TestRunner::run(self::suite());
    }
    /**
     * Creates the phpunit test suite for this package.
     *
     * @return PHPUnit_Framework_TestSuite
     */
    public static function suite()
    {
        $suite = new PHPUnit_Framework_TestSuite('PHP_Depend_Code_Filter - AllTests');
        $suite->addTestSuite('PHP_Depend_Code_Filter_PackageTest');
        return $suite;
    }
}
if (PHPUnit_MAIN_METHOD === 'PHP_Depend_Code_Filter_AllTests::main') {
    PHP_Depend_Code_Filter_AllTests::main();
}