Bitpay\AccessTokenTest::testNonceDisable PHP Method

testNonceDisable() public method

public testNonceDisable ( )
    public function testNonceDisable()
    {
        $token = new AccessToken();
        $this->assertNotNull($token);
        $this->assertFalse($token->isNonceDisabled());
        $token->nonceDisable();
        $this->assertTrue($token->isNonceDisabled());
    }