コード例 #1
0
 public function testExists()
 {
     $list = new ArrayList();
     $this->assertFalse($list->exists());
     $list = new ArrayList(array(1, 2, 3));
     $this->assertTrue($list->exists());
 }