InstallCommandTest.php 463 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. use Codeception\Util\Fixtures;
  3. use Grav\Common\Grav;
  4. /**
  5. * Class InstallCommandTest
  6. */
  7. class InstallCommandTest extends \Codeception\TestCase\Test
  8. {
  9. /** @var Grav $grav */
  10. protected $grav;
  11. /** @var InstallCommand */
  12. protected $installCommand;
  13. protected function _before()
  14. {
  15. $this->grav = Fixtures::get('grav');
  16. $this->installCommand = new InstallCommand();
  17. }
  18. protected function _after()
  19. {
  20. }
  21. }