Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function testMemoryUsageStaysLow() |
||
16 | { |
||
17 | $startMemory = memory_get_usage(); |
||
18 | |||
19 | $xml = SimpleXmlReader::openGzippedXML(__DIR__ . '/testdata/test-large.xml.gz'); |
||
20 | foreach($xml->path('icontroller/documents/document') as $i => $doc) { |
||
21 | if($i % 10000 == 0) { |
||
22 | $this->assertLessThan($startMemory + 1024 * 1024, memory_get_usage()); |
||
23 | } |
||
24 | } |
||
25 | } |
||
26 | } |
||
29 |