public void ThenAllMyStuffValuesAreStrictlyEqualToFollowing(Table table)
 {
     Assert.That (Instance.Of<IEnumerable<Stuff>> ().Object, Is.EqualTo (table.AsTestDoubleWithPropertiesEnumerable<Stuff> ()).Using (Properties.StrictComparison));
 }
 public void GivenIHaveLotsOfStuffDefinedAsFollowing(Table table)
 {
     Instance.Of<IEnumerable<Stuff>> ().Is (table.AsTestDoubleWithPropertiesEnumerable<Stuff> ());
 }