TestGroupInterferenceDetectionCommand constructor

TestGroupInterferenceDetectionCommand({
  1. TestGroupInterferenceDetection? testGroupInterferenceDetection,
  2. 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.',
    );
}