public MultipleScenariosTestCaseRunner(MultipleScenariosTestCase testCase, string displayName, string skipReason,
                                        object[] constructorArguments, IMessageSink diagnosticMessageSink, IMessageBus messageBus,
                                        ExceptionAggregator aggregator, CancellationTokenSource cancellationTokenSource) : base(testCase,
                                                                                                                                displayName, skipReason, constructorArguments, new object[0], messageBus, aggregator,
                                                                                                                                cancellationTokenSource)
 {
     DiagnosticMessageSink = diagnosticMessageSink;
 }
 public ScenarioTest(MultipleScenariosTestCase testCase, IScenarioIdentifier scenarioIdentifier, string displayName)
     : base(testCase, displayName)
 {
     ScenarioIdentifier = scenarioIdentifier;
 }