コード例 #1
0
 function test_get_default_card_handler()
 {
     $cart = new cart(1, $h = null);
     $h = $cart->get_cart_handler();
     $this->assertIsA($h, CART_DEFAULT_HANDLER_TYPE . '_cart_handler');
     $this->assertEqual($h->get_cart_id(), 1);
 }