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