for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
declare(strict_types=1);
namespace Spiral\Tests\Framework;
use Spiral\Tests\Framework\GRPC\GenerateTest;
class ConfigureTest extends ConsoleTest
{
public function testConfigure(): void
$output = $this->runCommandDebug('configure');
$this->assertStringContainsString('Verifying runtime directory', $output);
$this->assertStringContainsString('locale directory', $output);
}