コード例 #1
0
ファイル: TablesSteps.cs プロジェクト: Oaz/SpecFlowHelpers
 public void ThenAllMyStuffValuesAreNotLooselyEqualToFollowing(Table table)
 {
     Assert.That (Instance.Of<IEnumerable<Stuff>> ().Object, Is.Not.EqualTo (table.AsEnumerable()).Using (Properties.LooseComparison));
 }
コード例 #2
0
ファイル: TablesSteps.cs プロジェクト: Oaz/SpecFlowHelpers
 public void ThenAllMyStuffValuesAreStrictlyEquivalentToFollowing(Table table)
 {
     Assert.That (Instance.Of<IEnumerable<Stuff>> ().Object, Is.EquivalentTo (table.AsEnumerable<Stuff> ()).Using (Properties.StrictComparison));
 }
コード例 #3
0
ファイル: TablesSteps.cs プロジェクト: Oaz/SpecFlowHelpers
 public void GivenIHaveLotsOfStuffDefinedAsFollowing(Table table)
 {
     Instance.Of<IEnumerable<Stuff>>().Is (table.AsEnumerable<Stuff> ());
 }