grav/tests/unit/Grav/Console/Gpm/InstallCommandTest.php

29 lines
512 B
PHP
Raw Permalink Normal View History

<?php
use Codeception\Util\Fixtures;
use Grav\Common\Grav;
2021-02-01 10:14:53 +01:00
use Grav\Console\Gpm\InstallCommand;
2016-02-19 19:59:36 +01:00
/**
* Class InstallCommandTest
*/
class InstallCommandTest extends \Codeception\TestCase\Test
{
/** @var Grav $grav */
protected $grav;
2016-02-19 19:59:36 +01:00
/** @var InstallCommand */
protected $installCommand;
2021-02-01 10:14:53 +01:00
protected function _before(): void
{
$this->grav = Fixtures::get('grav');
$this->installCommand = new InstallCommand();
}
2021-02-01 10:14:53 +01:00
protected function _after(): void
{
}
2019-10-14 09:57:26 +02:00
}