AllCacherTest::suite PHP Method

suite() public static method

Suite define the tests for this plugin
public static suite ( ) : void
return void
    public static function suite()
    {
        $suite = new CakeTestSuite('All Cacher test');
        $path = CakePlugin::path('Cacher') . 'Test' . DS . 'Case' . DS;
        $suite->addTestDirectoryRecursive($path);
        return $suite;
    }
AllCacherTest