AllRecaptchaTest::suite PHP Метод

suite() публичный статический Метод

Suite define the tests for this suite
public static suite ( ) : void
Результат void
    public static function suite()
    {
        $Suite = new CakeTestSuite('All Recaptcha Plugin tests');
        $basePath = CakePlugin::path('Recaptcha') . DS . 'Test' . DS . 'Case' . DS;
        $Suite->addTestDirectory($basePath . DS . 'View' . DS . 'Helper');
        $Suite->addTestDirectory($basePath . DS . 'Model' . DS . 'Behavior');
        $Suite->addTestDirectory($basePath . DS . 'Controller' . DS . 'Component');
        return $Suite;
    }
AllRecaptchaTest