TestGroupInterferenceDetectionCommand constructor
TestGroupInterferenceDetectionCommand({
- TestGroupInterferenceDetection? testGroupInterferenceDetection,
- ExitWrapper? exitWrapper,
Implementation
TestGroupInterferenceDetectionCommand(
{TestGroupInterferenceDetection? testGroupInterferenceDetection,
ExitWrapper? exitWrapper})
: _testGroupInterferenceDetection =
testGroupInterferenceDetection ?? TestGroupInterferenceDetection(),
_exitWrapper = exitWrapper ?? ExitWrapper() {
argParser
..addOption(
'shard-index',
help: '(Optional) Index of the shard',
)
..addOption('shard-count', help: '(Optional) Total count of shards')
..addOption(
'seed',
help: '(Optional) Number used to randomize test groups.',
)
..addOption(
'test-path',
help: 'Path to the tests.',
);
}