ApaiIO\Test\Operations\Types\CartClearTest::testGetCartId PHP Method

testGetCartId() public method

public testGetCartId ( )
    public function testGetCartId()
    {
        $cart = new CartClear();
        $this->assertEquals(null, $cart->getCartId());
        $cart->setCartId('789');
        $this->assertEquals('789', $cart->getCartId());
    }