Bitpay\AccessTokenTest::testLabel PHP Method

testLabel() public method

public testLabel ( )
    public function testLabel()
    {
        $token = new AccessToken();
        $this->assertNotNull($token);
        $token->setLabel('label');
        $this->assertSame('label', $token->getLabel());
    }