コード例 #1
0
ファイル: StackTest.php プロジェクト: robo47/BlazeFramework
 public function testAddAll()
 {
     // Remove the following lines when you implement this test.
     $list = new \blaze\collections\lists\ArrayList();
     $list->add(555);
     $list->add(558);
     $list->add(559);
     $this->assertTrue($this->object->addAll($list));
     $this->assertTrue($this->object->count() == 13);
 }