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