Esempio n. 1
0
        private void TestingState(BacklogItem backlogItem)
        {
            var scrumMaster = backlogItem.GetSprint().GetScrumMaster();

            scrumMaster.SendNotification($"Hello scrum master {scrumMaster.GetName()}, BacklogItem {backlogItem.GetDescription()} is in Testing state.");
        }
Esempio n. 2
0
 private void ReadyToTestState(BacklogItem backlogItem)
 {
     // BacklogItem is ready to test, notify testers.
     foreach (var tester in backlogItem.GetBacklog().GetProject().GetTesters())
     {
         tester.SendNotification($"Hello tester {tester.GetName()}, BacklogItem {backlogItem.GetDescription()} is ready to test");
     }
 }