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 | protected function setUp() |
||
21 | |||
22 | public function tearDown(): void |
||
26 | |||
27 | protected function loadKernelAndFixtures(array $classNames = []): ReferenceRepository |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | protected function getRepositoryTemplatePath() |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | protected function getRepositoryTargetPath() |
||
50 | } |
||
51 |