This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/simpletest/standalone.php

28 lines
565 B
PHP
Raw Normal View History

<?php
#require_once('lib/simpletest/autorun.php');
require_once('simpletest/web_tester.php');
require_once('simpletest/reporter.php');
require_once('config.php');
class SectionReporter extends TextReporter {
function paintGroupStart($name, $size) {
parent::paintGroupStart($name, $size);
print "\n** $name\n";
}
}
// }}} */
class AllTests extends TestSuite {
function AllTests() {
$this->TestSuite('All tests');
foreach(glob("ext/*/test.php") as $file) {
$this->addFile($file);
}
}
}
$all = new AllTests();
$all->run(new SectionReporter());
?>