| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class ConstraintTestCase extends TestCase |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var MockObject|NormalizerInterface |
||
| 13 | */ |
||
| 14 | protected $normalizer; |
||
| 15 | |||
| 16 | abstract public function testNormalization(): void; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | protected function setUp(): void |
||
| 22 | { |
||
| 23 | $this->normalizer = $this->createMock(NormalizerInterface::class); |
||
| 24 | } |
||
| 26 |