Beispiel #1
0
 public static TestableXunitTestCase Create(IAssemblyInfo assembly, ITypeInfo type, IMethodInfo method, IAttributeInfo factAttribute)
 {
     return new TestableXunitTestCase(assembly, type, method, factAttribute);
 }
Beispiel #2
0
 TestableXunitTestCase(IAssemblyInfo assembly, ITypeInfo type, IMethodInfo method, IAttributeInfo factAttribute, Action<IMessageSink> callback = null)
     : base(assembly, type, method, factAttribute)
 {
     this.callback = callback;
 }