zoneminder/web/app/Plugin/BoostCake/Test/Case/AllTestsTest.php

11 lines
238 B
PHP
Raw Normal View History

2013-09-13 08:00:57 +08:00
<?php
class AllTest extends CakeTestSuite {
public static function suite() {
$suite = new CakeTestSuite('All tests');
$path = dirname(__FILE__);
$suite->addTestDirectory($path . DS . 'View' . DS . 'Helper');
return $suite;
}
}