| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 8 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function testExtract() |
||
| 23 | { |
||
| 24 | $collection = $this->getSourceLocations(new SourceLocationContainerVisitor(), Resources\Php\SourceLocationContainer::class); |
||
| 25 | |||
| 26 | $this->assertCount(2, $collection); |
||
| 27 | $source = $collection->first(); |
||
| 28 | $this->assertEquals('foo', $source->getMessage()); |
||
| 29 | } |
||
| 30 | } |
||
| 31 |