1 | <?php |
||
10 | abstract class BaseIntegrationTest extends WebTestCase |
||
11 | { |
||
12 | use GitRepositoryTestTrait; |
||
13 | |||
14 | const GIT_REPOSITORY_PATH = '/tmp/gitkirepo/'; |
||
15 | |||
16 | /** |
||
17 | * @var ReferenceRepository |
||
18 | */ |
||
19 | protected $referenceRepository; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | protected static function getKernelClass() |
||
28 | |||
29 | protected function setUp() |
||
36 | |||
37 | public function tearDown() |
||
41 | |||
42 | /** |
||
43 | * @param string $name |
||
44 | * |
||
45 | * @return object |
||
46 | */ |
||
47 | protected function getReference($name) |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | protected function getRepositoryTemplatePath() |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | protected function getRepositoryTargetPath() |
||
67 | |||
68 | /** |
||
69 | * @return string[] |
||
70 | */ |
||
71 | abstract protected function getFixtureClasses(); |
||
72 | } |
||
73 |