diff --git a/contrib/simpletest/standalone.php b/contrib/simpletest/standalone.php new file mode 100644 index 00000000..92a90d20 --- /dev/null +++ b/contrib/simpletest/standalone.php @@ -0,0 +1,27 @@ +TestSuite('All tests'); + foreach(glob("ext/*/test.php") as $file) { + $this->addFile($file); + } + } +} + +$all = new AllTests(); +$all->run(new SectionReporter()); +?>