0
0
Fork 0
mirror of https://github.com/getgrav/grav.git synced 2025-01-22 07:41:43 +00:00
getgrav_grav/tests/unit/Grav/Console/Gpm/InstallCommandTest.php
2021-02-01 11:14:53 +02:00

28 lines
512 B
PHP

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