| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 16 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 18 | public function testNormalization(): void  | 
            ||
| 19 |     { | 
            ||
| 20 | $normalizer = new MapNormalizer();  | 
            ||
| 21 | |||
| 22 | $matcher = $this->createMock(MapMatcher::class);  | 
            ||
| 23 |         $matcher->method('getMapKey')->willReturn('foo'); | 
            ||
| 24 | |||
| 25 | $this->assertEquals(  | 
            ||
| 26 | [  | 
            ||
| 27 | 'key' => 'foo',  | 
            ||
| 28 | 'map' => [],  | 
            ||
| 29 | 'reverseMap' => [],  | 
            ||
| 30 | ],  | 
            ||
| 31 | $normalizer->normalize($matcher)  | 
            ||
| 32 | );  | 
            ||
| 33 | }  | 
            ||
| 34 | |||
| 43 |