JonathanTorres\Construct\Commands\ConstructCommand::bootstrappedCodeceptionMessage PHP Method

bootstrappedCodeceptionMessage() private method

Show message if codeception is bootstrapped successfully.
private bootstrappedCodeceptionMessage ( string $testFramework, Symfony\Component\Console\Output\OutputInterface $output ) : void
$testFramework string
$output Symfony\Component\Console\Output\OutputInterface
return void
    private function bootstrappedCodeceptionMessage($testFramework, $output)
    {
        if ($testFramework === 'codeception') {
            $output->writeln('<info>Bootstrapped codeception.</info>');
        }
    }