12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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()
- {
- $this->grav = Fixtures::get('grav');
- $this->directInstallCommand = new DirectInstallCommand();
- }
- }
|