mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-05-06 21:57:45 -04:00
11 lines
238 B
PHP
11 lines
238 B
PHP
<?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;
|
|
}
|
|
|
|
} |