1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- use Codeception\Util\Fixtures;
- use Grav\Common\Grav;
- use Grav\Console\Gpm\DirectInstallCommand;
- class DirectInstallCommandTest extends \Codeception\TestCase\Test
- {
-
- protected $grav;
-
- protected $directInstall;
- protected function _before(): void
- {
- $this->grav = Fixtures::get('grav');
- $this->directInstallCommand = new DirectInstallCommand();
- }
- }
|