ValidateTestCommand constructor

ValidateTestCommand({
  1. TestValidator? testValidator,
  2. ExitWrapper? exitWrapper,
})

Implementation

ValidateTestCommand({TestValidator? testValidator, ExitWrapper? exitWrapper})
    : _testValidator = testValidator ?? TestValidator(),
      _exitWrapper = exitWrapper ?? ExitWrapper() {
  argParser.addOption(
    'test-path',
    help: 'Path to the tests.',
  );
}