summaryrefslogtreecommitdiffstats
path: root/3rdparty/simpletest/extensions/coverage/test/test.php
blob: 0af4dbf3e744a1575fd12869489767a1a3c04d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
// $Id: $
require_once(dirname(__FILE__) . '/../../../autorun.php');

class CoverageUnitTests extends TestSuite {
    function CoverageUnitTests() {
        $this->TestSuite('Coverage Unit tests');
        $path = dirname(__FILE__) . '/*_test.php';
        foreach(glob($path) as $test) {
            $this->addFile($test);
        }
    }
}
?>