Total Complexity | 1 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | abstract class AbstractFilterTest extends TestCase |
||
19 | { |
||
20 | /** |
||
21 | * @var QueryFilterManagerInterface|MockObject |
||
22 | */ |
||
23 | protected $queryFilterManager; |
||
24 | |||
25 | /** |
||
26 | * @var TypecasterInterface|MockObject |
||
27 | */ |
||
28 | protected $typecaster; |
||
29 | |||
30 | /** |
||
31 | * @var QueryBuilderInterface|MockObject |
||
32 | */ |
||
33 | protected $queryBuilder; |
||
34 | |||
35 | /** |
||
36 | * @var MetadataInterface|MockObject |
||
37 | */ |
||
38 | protected $metadata; |
||
39 | |||
40 | /** |
||
41 | * Prepare the test case dependencies |
||
42 | */ |
||
43 | public function setUp(): void |
||
54 |