| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 42 | public function testGetObjectFqn() |
||
| 43 | { |
||
| 44 | |||
| 45 | $expectedToObjects = [ |
||
| 46 | \get_class($this) => $this, |
||
| 47 | \get_class(self::$helper) => self::$helper, |
||
| 48 | ]; |
||
| 49 | $actual = []; |
||
| 50 | foreach ($expectedToObjects as $object) { |
||
| 51 | $actual[self::$helper->getObjectFqn($object)] = $object; |
||
| 52 | } |
||
| 53 | $this->assertSame($expectedToObjects, $actual); |
||
| 54 | } |
||
| 56 |