Example #1
0
 public void FixtureSetup()
 {
     factory = new XunitAssertionFactory();            
 }
 public StringAssertBuilderTests(IAssertionFactory factory)
 {
     this.factory = factory;   
 }
 public BooleanAssertBuilderTests(IAssertionFactory factory)
 {
     this.factory = factory;   
 }
Example #4
0
 public SameCriteria(IAssertionFactory factory, object actual, object expected)
 {
     this.actual = actual;
     this.expected = expected;
     this.factory = factory;
 }
 public EnumerableAssertBuilderTests(IAssertionFactory factory)
 {
     this.factory = factory;
 }
Example #6
0
 public BuilderTests()
 {
     factory = new NUnitAssertionFactory();
 }
 public ExceptionHandlerTests(IAssertionFactory factory)
 {
     this.factory = factory;
 }