Scheb\TwoFactorBundle\Tests\Security\TwoFactor\Trusted\TrustedCookieManagerTest::isTrustedComputer_noCookieSet_returnFalse PHP Method

isTrustedComputer_noCookieSet_returnFalse() public method

    public function isTrustedComputer_noCookieSet_returnFalse()
    {
        $user = $this->createMock('Scheb\\TwoFactorBundle\\Model\\TrustedComputerInterface');
        $request = $this->createRequest(null);
        $returnValue = $this->cookieManager->isTrustedComputer($request, $user);
        $this->assertFalse($returnValue);
    }