File "AllTests.php"

Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/php/tests/Structures_Graph/tests/AllTests.php
File size: 444 B
MIME-type:
Charset: utf-8

Download   Open   Back

<?php
require_once dirname(__FILE__) . '/helper.inc';

class Structures_Graph_AllTests
{
    public static function main()
    {
        PHPUnit_TextUI_TestRunner::run(self::suite());
    }

    public static function suite()
    {
        $suite = new PHPUnit_Framework_TestSuite('Structures_Graph Tests');

        $dir = new GlobIterator(dirname(__FILE__) . '/*Test.php');
        $suite->addTestFiles($dir);

        return $suite;
    }
}

PHP File Manager