コード例 #1
0
 function addEmptyAccent()
 {
     parent::append(null);
 }
コード例 #2
0
 public function testAppend()
 {
     $this->fixture();
     $this->object->append(4);
     $this->assertEquals(array(1, 2, 3, 4), iterator_to_array($this->object));
 }