1 | <?php |
||
12 | class MigrateConfigCommandTest extends TestCase |
||
13 | { |
||
14 | /** |
||
15 | * @var MigrateConfigCommand |
||
16 | */ |
||
17 | private $command; |
||
18 | /** |
||
19 | * @var CommandTester |
||
20 | */ |
||
21 | private $commandTester; |
||
22 | |||
23 | public function setUp() |
||
30 | |||
31 | /** |
||
32 | * @test |
||
33 | */ |
||
34 | public function configIsProperlyParsed() |
||
47 | |||
48 | /** |
||
49 | * @test |
||
50 | */ |
||
51 | public function exceptionIsThrownIfProvidedConfigFilesDoesNotExist() |
||
58 | |||
59 | /** |
||
60 | * @test |
||
61 | */ |
||
62 | public function exceptionIsThrownIfStandardConfigIsNotFound() |
||
67 | |||
68 | /** |
||
69 | * @test |
||
70 | */ |
||
71 | public function exceptionIsThrownIfLoadedConfigIsEmpty() |
||
78 | } |
||
79 |