1 | <?php |
||
11 | abstract class IntegrationTestCase extends TestCase |
||
12 | { |
||
13 | use TestCaseTrait { |
||
14 | TestCaseTrait::setUp as traitSetUp; |
||
15 | TestCaseTrait::tearDown as traitTearDown; |
||
16 | } |
||
17 | use MockeryPHPUnitIntegration; |
||
18 | |||
19 | protected function getConnection() |
||
23 | |||
24 | protected function setUp() |
||
30 | |||
31 | protected function tearDown() |
||
36 | |||
37 | protected function assertCompareDataSet(array $tables, $expectedDataSetXmlFile) |
||
43 | } |
||
44 |