示例#1
0
        public void ThenTheyShouldSeeThatTheTicketTitleIs(string title)
        {
            var theActor = stage.GetTheActorInTheSpotlight();

            Then(theActor).ShouldSee(TheTicket.Title())
            .Should()
            .Be(title);
        }
示例#2
0
        public void ThenTheyShouldSeeThatTheTicketIsAPartOfTheSprint(string sprint)
        {
            var theActor = stage.GetTheActorInTheSpotlight();

            Then(theActor).ShouldSee(TheTicket.SprintTitle())
            .Should()
            .Be(sprint);
        }
示例#3
0
        public void ThenTheyShouldSeeThatTheTicketDescriptionIs(string description)
        {
            var theActor = stage.GetTheActorInTheSpotlight();

            Then(theActor).ShouldSee(TheTicket.Description())
            .Should()
            .Be(description);
        }