Bitpay\AccessTokenTest::testNonceEnable PHP Method

testNonceEnable() public method

public testNonceEnable ( )
    public function testNonceEnable()
    {
        $token = new AccessToken();
        $this->assertNotNull($token);
        $this->assertFalse($token->isNonceDisabled());
        $token->nonceEnable();
        $this->assertFalse($token->isNonceDisabled());
    }