CakeDC\Users\Test\TestCase\Model\Behavior\SocialBehaviorTest::testSocialLoginExistingReferenceNotActiveUser PHP Метод

testSocialLoginExistingReferenceNotActiveUser() публичный Метод

Test socialLogin with existing and active account but not active user
    public function testSocialLoginExistingReferenceNotActiveUser($data, $options)
    {
        $this->Behavior->expects($this->never())->method('generateUniqueUsername');
        $this->Behavior->expects($this->never())->method('randomString');
        $this->Behavior->expects($this->never())->method('_updateActive');
        $this->Behavior->socialLogin($data, $options);
    }