public WpfTheoryTestCaseRunner(
     WpfTestSharedData sharedData,
     IXunitTestCase testCase,
     string displayName,
     string skipReason,
     object[] constructorArguments,
     IMessageSink diagnosticMessageSink,
     IMessageBus messageBus,
     ExceptionAggregator aggregator,
     CancellationTokenSource cancellationTokenSource)
     : base(testCase, displayName, skipReason, constructorArguments, diagnosticMessageSink, messageBus, aggregator, cancellationTokenSource)
 {
     SharedData = sharedData;
 }
Example #2
0
 public WpfTestInvoker(
     WpfTestSharedData sharedData,
     ITest test,
     IMessageBus messageBus,
     Type testClass,
     object[] constructorArguments,
     MethodInfo testMethod,
     object[] testMethodArguments,
     IReadOnlyList <BeforeAfterTestAttribute> beforeAfterAttributes,
     ExceptionAggregator aggregator,
     CancellationTokenSource cancellationTokenSource)
     : base(test, messageBus, testClass, constructorArguments, testMethod, testMethodArguments, beforeAfterAttributes, aggregator, cancellationTokenSource)
 {
     SharedData = sharedData;
 }
Example #3
0
 public WpfTheoryTestCase(IMessageSink diagnosticMessageSink, TestMethodDisplay defaultMethodDisplay, TestMethodDisplayOptions defaultMethodDisplayOptions, ITestMethod testMethod)
     : base(diagnosticMessageSink, defaultMethodDisplay, defaultMethodDisplayOptions, testMethod)
 {
     SharedData = WpfTestSharedData.Instance;
 }
Example #4
0
 public override void Deserialize(IXunitSerializationInfo data)
 {
     base.Deserialize(data);
     SharedData = WpfTestSharedData.Instance;
 }
Example #5
0
 public WpfTestCase(IMessageSink diagnosticMessageSink, TestMethodDisplay defaultMethodDisplay, ITestMethod testMethod, object[] testMethodArguments = null)
     : base(diagnosticMessageSink, defaultMethodDisplay, testMethod, testMethodArguments)
 {
     SharedData = WpfTestSharedData.Instance;
 }