Example #1
0
 public new ITestClass CreateTestClass(ITypeInfo @class)
 {
     return(base.CreateTestClass(@class));
 }
Example #2
0
 protected sealed override bool IsValidTestClass(ITypeInfo type)
 {
     return(base.IsValidTestClass(type));
 }
 public new ITestClass CreateTestClass(ITypeInfo @class)
 {
     return base.CreateTestClass(@class);
 }
 protected sealed override bool IsValidTestClass(ITypeInfo type)
 {
     return base.IsValidTestClass(type);
 }
Example #5
0
 TestableXunitTestCase(IAssemblyInfo assembly, ITypeInfo type, IMethodInfo method, IAttributeInfo factAttribute, Action<IMessageSink> callback = null)
     : base(assembly, type, method, factAttribute)
 {
     this.callback = callback;
 }
Example #6
0
 public static TestableXunitTestCase Create(IAssemblyInfo assembly, ITypeInfo type, IMethodInfo method, IAttributeInfo factAttribute)
 {
     return new TestableXunitTestCase(assembly, type, method, factAttribute);
 }
 public virtual bool FindImpl(ITypeInfo type, bool includeSourceInformation = false)
 {
     return base.FindImpl(type, includeSourceInformation, Visitor);
 }
 protected override sealed bool FindImpl(ITypeInfo type, bool includeSourceInformation, IMessageSink messageSink)
 {
     return FindImpl(type, includeSourceInformation);
 }
Example #9
0
 protected sealed override bool FindImpl(ITypeInfo type, bool includeSourceInformation, IMessageBus messageBus)
 {
     return(FindImpl(type, includeSourceInformation));
 }
Example #10
0
 public ITestCollection Get(ITypeInfo testClass)
 {
     throw new NotImplementedException();
 }
Example #11
0
 public virtual bool FindImpl(ITypeInfo type, bool includeSourceInformation = false)
 {
     using (var messageBus = new MessageBus(Visitor))
         return(base.FindImpl(type, includeSourceInformation, messageBus));
 }
 public ITestCollection Get(ITypeInfo testClass)
 {
     throw new NotImplementedException();
 }
 protected sealed override bool FindTestsForType(ITypeInfo type, bool includeSourceInformation, IMessageBus messageBus)
 {
     return FindTestsForClass(type, includeSourceInformation);
 }
 public virtual bool FindTestsForClass(ITypeInfo type, bool includeSourceInformation = false)
 {
     using (var messageBus = new MessageBus(Visitor))
         return base.FindTestsForType(type, includeSourceInformation, messageBus);
 }
Example #15
0
 protected sealed override bool FindTestsForType(ITypeInfo type, bool includeSourceInformation, IMessageBus messageBus)
 {
     return(FindTestsForClass(type, includeSourceInformation));
 }