ApaiIO\Test\Operations\Types\CartAddTest::testGetHMAC PHP Method

testGetHMAC() public method

public testGetHMAC ( )
    public function testGetHMAC()
    {
        $cart = new CartAdd();
        $this->assertEquals(null, $cart->getHMAC());
        $cart->setHMAC('1234');
        $this->assertEquals('1234', $cart->getHMAC());
    }