| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | protected function checkCollectedData(CollectorInterface $collector): void |
||
| 31 | { |
||
| 32 | if (DIRECTORY_SEPARATOR === '\\') { |
||
| 33 | $this->markTestSkipped('This test is not supported on Windows.'); |
||
| 34 | } |
||
| 35 | |||
| 36 | parent::checkCollectedData($collector); |
||
| 37 | $data = $collector->getCollected(); |
||
| 38 | |||
| 39 | $this->assertGreaterThan(0.122, $data['applicationProcessingTime']); |
||
| 40 | } |
||
| 42 |