| 1 | <?php |
||
| 11 | abstract class BaseIntegrationTest extends WebTestCase |
||
| 12 | { |
||
| 13 | use GitRepositoryTestTrait; |
||
| 14 | |||
| 15 | const GIT_REPOSITORY_PATH = '/tmp/gitkirepo/'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var ReferenceRepository |
||
| 19 | */ |
||
| 20 | protected $referenceRepository; |
||
| 21 | |||
| 22 | protected function setUp() |
||
| 29 | |||
| 30 | public function tearDown() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $name |
||
| 37 | * |
||
| 38 | * @return object |
||
| 39 | */ |
||
| 40 | protected function getReference($name) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | protected function getRepositoryTemplatePath() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | */ |
||
| 56 | protected function getRepositoryTargetPath() |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return string[] |
||
| 63 | */ |
||
| 64 | abstract protected function getFixtureClasses(); |
||
| 65 | } |
||
| 66 |