private void TestingState(BacklogItem backlogItem) { var scrumMaster = backlogItem.GetSprint().GetScrumMaster(); scrumMaster.SendNotification($"Hello scrum master {scrumMaster.GetName()}, BacklogItem {backlogItem.GetDescription()} is in Testing state."); }
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"); } }