1 | <?php |
||
10 | abstract class BaseIntegrationTest extends WebTestCase |
||
11 | { |
||
12 | use GitRepositoryTestTrait; |
||
13 | use FixturesTrait; |
||
14 | |||
15 | const GIT_REPOSITORY_PATH = '/tmp/gitkirepo/'; |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | protected function setUp(): void |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function tearDown(): void |
||
32 | |||
33 | protected function loadKernelAndFixtures(array $classNames = []): ReferenceRepository |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | protected function getRepositoryTemplatePath() |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | protected function getRepositoryTargetPath() |
||
54 | } |
||
55 |