TemplateTestCommand constructor

TemplateTestCommand()

Creates a new TemplateTestCommand instance.

Configures the command-line argument parser with all required options.

Implementation

TemplateTestCommand() {
  argParser.addOption(
    'apps-name',
    abbr: 'a',
    help: 'Generate specific apps (Optional)',
  );
  argParser.addOption(
    'feature-name',
    abbr: 'f',
    help: 'Generate template test in specific feature',
    mandatory: true,
  );
  argParser.addOption(
    'page-name',
    abbr: 'p',
    help: 'Generate specific page, must include --feature-name',
    mandatory: true,
  );

  // Initialize services
  _initializeServices();
}