InfyOm\Generator\Commands\API\TestsGeneratorCommand::handle PHP Метод

handle() публичный Метод

Execute the command.
public handle ( ) : void
Результат void
    public function handle()
    {
        parent::handle();
        $repositoryTestGenerator = new RepositoryTestGenerator($this->commandData);
        $repositoryTestGenerator->generate();
        $testTraitGenerator = new TestTraitGenerator($this->commandData);
        $testTraitGenerator->generate();
        $apiTestGenerator = new APITestGenerator($this->commandData);
        $apiTestGenerator->generate();
        $this->performPostActions();
    }