Chris@14: loadXML(''); Chris@14: $collection = new ExtElementCollection($dom->childNodes); Chris@14: Chris@14: foreach($collection as $position => $extElement) { Chris@14: $this->assertInstanceOf(ExtElement::class, $extElement); Chris@14: $this->assertEquals(0, $position); Chris@14: } Chris@14: } Chris@14: Chris@14: }