getHelperSet()); $command->setHelperSet($this->getHelperSet()); $command->setGenerator($this->getGenerator()); $commandTester = new CommandTester($command); $code = $commandTester->execute( [ '--module' => $module, '--class' => $class_name, '--routes' => $routes, '--test' => $test, '--services' => $services, ], ['interactive' => false] ); $this->assertEquals(0, $code); } private function getGenerator() { return $this ->getMockBuilder('Drupal\Console\Generator\ControllerGenerator') ->disableOriginalConstructor() ->setMethods(['generate']) ->getMock(); } }