Emarref\Jwt\Verification\NotBeforeVerifierTest::testMissingNotBefore PHP Метод

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

    public function testMissingNotBefore()
    {
        $this->payload->expects($this->once())->method('findClaimByName')->with(NotBefore::NAME)->will($this->returnValue(null));
        $this->verifier->verify($this->token);
    }