grav-lecampus/tests/unit/Grav/Console/Gpm/InstallCommandTest.php
2019-03-28 17:57:56 +01:00

28 lines
463 B
PHP

<?php
use Codeception\Util\Fixtures;
use Grav\Common\Grav;
/**
* Class InstallCommandTest
*/
class InstallCommandTest extends \Codeception\TestCase\Test
{
/** @var Grav $grav */
protected $grav;
/** @var InstallCommand */
protected $installCommand;
protected function _before()
{
$this->grav = Fixtures::get('grav');
$this->installCommand = new InstallCommand();
}
protected function _after()
{
}
}