Scheb\TwoFactorBundle\Tests\Security\TwoFactor\Trusted\TrustedComputerManagerTest::isTrustedComputer_notSupportsTrustedComputerInterface_returnFalse PHP Метод

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

    public function isTrustedComputer_notSupportsTrustedComputerInterface_returnFalse()
    {
        $user = $this->createMock('Symfony\\Component\\Security\\Core\\User\\UserInterface');
        $returnValue = $this->trustedComputerManager->isTrustedComputer($user, 'trustedToken');
        $this->assertFalse($returnValue);
    }