| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function setUp() |
||
| 32 | { |
||
| 33 | parent::setUp(); |
||
| 34 | |||
| 35 | $this->root = vfsStream::setup('configs'); |
||
| 36 | $this->configFile = vfsStream::newFile('default.yml')->at($this->root); |
||
| 37 | $this->configFile->setContent(TestData::getYamlImportConfigFile()); |
||
| 38 | |||
| 39 | $this->configImportFile = vfsStream::newFile('testimport.yml')->at($this->root); |
||
| 40 | $this->configImportFile->setContent(TestData::getYamlImportFile()); |
||
| 41 | |||
| 42 | $this->configTimerFile = vfsStream::newFile('testTimer.yml')->at($this->root); |
||
| 43 | $this->configTimerFile->setContent(TestData::getYamlTimerConfigFile()); |
||
| 44 | } |
||
| 45 | |||
| 62 |