Example #1
0
 public void ThenAllMyStuffValuesAreNotLooselyEqualToFollowing(Table table)
 {
     Assert.That (Instance.Of<IEnumerable<Stuff>> ().Object, Is.Not.EqualTo (table.AsEnumerable()).Using (Properties.LooseComparison));
 }
Example #2
0
 public void ThenAllMyStuffValuesAreStrictlyEquivalentToFollowing(Table table)
 {
     Assert.That (Instance.Of<IEnumerable<Stuff>> ().Object, Is.EquivalentTo (table.AsEnumerable<Stuff> ()).Using (Properties.StrictComparison));
 }
Example #3
0
 public void GivenIHaveLotsOfStuffDefinedAsFollowing(Table table)
 {
     Instance.Of<IEnumerable<Stuff>>().Is (table.AsEnumerable<Stuff> ());
 }