Emarref\Jwt\Encryption\AsymmetricTest::testVerifyNoPublicKey PHP Method

testVerifyNoPublicKey() public method

    public function testVerifyNoPublicKey()
    {
        $this->algorithm->expects($this->never())->method('verify');
        $this->encryption->verify('value', 'signature');
    }