With MSpec is it possible to create data driven tests. For example, NUnit has the TestCase and TextFixture attributes that allow for this. Also, are there equivalents to the combinatorial, sequential or pairwise attibutes. Thanks everyone.
Thanks for your reply. What do you mean by "describing behavior?" With each person, what is meant by the phrase "describe behavior" seems a little different. How does the NUnit test below fit into your perspective,
[TestFixture]
[Category("Poker Showdown")]
public class given_both_players_have_different_hand_types
{
.....
[TestCase(TestName="then player one wins because one pair beats a high hand",
new[] {2, 5, 7, 9, 9}, new[] {2, 5, 7, 8, 9}, ShowdownOutcome.PlayerOneWins), ]
[TestCase(TestName="then player two wins because two pair beats a one pair",
new[] {2, 5, 7, 9, 9}, new[] {2, 5, 5, 9, 9}, ShowdownOutcome.PlayerTwoWins), ]
public void when_selecting_a_winner_of_a_two_player_showdown(int[] PlayerOnesHand, int[] PlayerTwosHand, ShowdownOutcome PlayerWithHigherHand)
{
Game.Showdown(PlayerOnesHand, PlayerTwosHand).ShouldBe(PlayerWithHigherHand)
}
}
Please forgive the primitive obsession and other little smells. Thanks for your time.