示例#1
0
 public function testClear()
 {
     $cardCollection = new CardCollection(TestDataProvider::getCardsArray());
     $this->assertNotSame(0, $cardCollection->count());
     $cardCollection->clear();
     $this->assertSame(0, $cardCollection->count());
 }