Пример #1
0
 public function testGetIterator()
 {
     // Remove the following lines when you implement this test.
     $it = $this->object->getIterator();
     $this->assertTrue($it instanceof \blaze\collections\Iterator);
     $test = false;
     foreach ($this->object as $val) {
         $test = true;
     }
     $this->assertTrue($test);
 }