InstallCommandTest.php 512 B

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