Remove the auto-run.
This commit is contained in:
parent
8b0ac0e9c1
commit
a717f5a0bd
1 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,6 @@
|
|||
* @copyright Copyright (c) 2014, jgen
|
||||
*/
|
||||
|
||||
require_once('lib/simpletest/autorun.php');
|
||||
require_once('lib/simpletest/unit_tester.php');
|
||||
require_once('lib/simpletest/web_tester.php');
|
||||
require_once('lib/simpletest/reporter.php');
|
||||
|
@ -62,3 +61,7 @@ class ShimmieInstallerTest extends WebTestCase {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
$test = new TestSuite('Install Shimmie');
|
||||
$test->add(new ShimmieInstallerTest());
|
||||
exit ($test->run(new TextReporter()) ? 0 : 1);
|
||||
|
|
Reference in a new issue