AllOAuthTestsTest::suite PHP Method

suite() public static method

public static suite ( )
    public static function suite()
    {
        $suite = new CakeTestSuite('OAuth Tests');
        $path = CakePlugin::path('OAuth') . 'Test' . DS . 'Case' . DS;
        $suite->addTestDirectory($path . 'Model' . DS . 'Behavior');
        return $suite;
    }
AllOAuthTestsTest