Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class DbTestCase extends TestCase |
||
19 | { |
||
20 | use FixtureTrait; |
||
21 | |||
22 | /** |
||
23 | * @var \UnitTester |
||
24 | */ |
||
25 | protected $tester; |
||
26 | |||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | protected function _before() |
||
32 | { |
||
33 | parent::_before(); |
||
34 | $this->loadFixtures(); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | */ |
||
40 | protected function _after() |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | */ |
||
49 | public function fixtures() |
||
54 |