restoreFromSession() 공개 메소드

Restores the shopping cart from the session
public restoreFromSession ( )
예제 #1
0
 function testRestoreFromSession()
 {
     $this->setUp();
     $cart = new EShoppingCart();
     $book = Book::model()->findByPk(1);
     $cart->put($book);
     $newCart = new EShoppingCart();
     $newCart->restoreFromSession();
     $this->assertEquals(1, $newCart->getItemsCount());
 }