示例#1
0
 public void Matches_returns_false_for_a_ticket_with_story_points(Ticket ticket, HasNoStoryPoints sut)
 {
     ticket.StoryPoints = 5;
     Assert.That(() => sut.Matches(ticket), Is.False);
 }
示例#2
0
 public void Matches_returns_true_for_a_ticket_without_story_points(Ticket ticket, HasNoStoryPoints sut)
 {
     ticket.StoryPoints = null;
     Assert.That(() => sut.Matches(ticket), Is.True);
 }