Example #1
0
 public void GivenIHaveStuffDefinedAsFollowing(Table table)
 {
     Instance.Of<Stuff>().Is (table.As<Stuff> ());
 }
Example #2
0
 public void ThenMyStuffValuesAreNotAsFollowing(Table table)
 {
     Assert.That (Instance.Of<Stuff> ().Object, Is.Not.Null);
     Assert.That (Instance.Of<Stuff> ().Object, Is.Not.EqualTo (table.As<Stuff> ()).Using (Properties.StrictComparison));
 }
Example #3
0
 public void WhenTheScoresAre(Table table)
 {
     Instance.Of<ExamResults>().Is( table.As<ExamResults>() );
 }