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