Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function testIterationWorks() { |
||
17 | $iterator = new DumpIterator( new DumpXmlReader( $this->getFilePath( 'simple/two-items.xml' ) ) ); |
||
18 | |||
19 | $this->assertCount( 2, iterator_to_array( $iterator ) ); |
||
20 | $this->assertContainsOnlyInstancesOf( 'Queryr\DumpReader\Page', $iterator ); |
||
21 | } |
||
22 | |||
27 | } |