| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function testSupportsNormalization() |
||
| 33 | { |
||
| 34 | $normalizer = new RegexNormalizer(); |
||
| 35 | |||
| 36 | $this->assertTrue($normalizer->supportsNormalization($this->createMock(RegexMatcher::class))); |
||
| 37 | $this->assertFalse($normalizer->supportsNormalization($this->createMock(Matcher::class))); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |