first commit

This commit is contained in:
2026-01-16 16:24:07 +01:00
parent d58746ef53
commit 688c9e761e
1082 changed files with 155749 additions and 0 deletions
@@ -0,0 +1,28 @@
<?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
{
}
}