class CreateAppCommandTest extends TestCase
{ private const APP_NAME = 'TestApp';
private RefreshableAppDryRun
$appLifecycle;
private string
$appDir;
protected function setUp(): void
{ $this->appLifecycle =
new RefreshableAppDryRun();
$this->appDir = __DIR__ . '/_fixtures/create-app-project';
} protected function tearDown(): void
{ $this->
removeApp();
} public function testSuccessfulCreateCommand(): void
{ $commandTester =
$this->
getCommandTester();