Skip to content

Commit

Permalink
Added test GIVEN_dispense_a_ticket_WHEN_check_ticket_turn_number_THEN…
Browse files Browse the repository at this point in the history
…_get_characterization().
  • Loading branch information
wubin28 committed Apr 18, 2014
1 parent 23e5d87 commit 504e104
Showing 1 changed file with 14 additions and 0 deletions.
@@ -0,0 +1,14 @@
using NUnit.Framework;

namespace TDDMicroExercises.TurnTicketDispenser.Tests
{
[TestFixture]
public class TicketDispenserTest
{
[Test]
public void GIVEN_dispense_a_ticket_WHEN_check_ticket_turn_number_THEN_get_characterization()
{
Assert.AreEqual(0, ticket.TurnNumber);
}
}
}

0 comments on commit 504e104

Please sign in to comment.