fix testcase runner

This commit is contained in:
Robin Appelman 2012-02-28 11:16:58 +01:00
parent 273d7fb4fd
commit 7ec1c0703d
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ function loadTests($dir=''){
$testCase=new TestSuite(getTestName($file));
$testCase->addFile($basedir.$file);
if($testCase->getSize()>0){
$testCase->run(new DefaultReporter());
$testCase->run(new HtmlReporter());
}
}
}