Emarref\Jwt\Verification\NotBeforeVerifierTest::testMissingNotBefore PHP Method

testMissingNotBefore() public method

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