Complete the code to identify the Scrum event where testing is planned.
def scrum_event(): return "[1]"
The Sprint Planning meeting is where the team plans the work, including testing tasks, for the upcoming sprint.
Complete the code to show the Scrum role responsible for ensuring testing is done.
def scrum_role(): return "[1]"
The Development Team is responsible for delivering the product increment, including performing testing during the sprint.
Fix the error in the code to correctly represent when testing feedback is shared.
def feedback_event(): return "[1]"
The Sprint Review is when the team shows the work done and gathers feedback, including testing results.
Fill both blanks to complete the sentence about testing in Scrum sprints.
Testing is integrated into the [1] and results are discussed during the [2].
Testing happens during the Sprint, and the results are shared in the Sprint Review meeting.
Fill all three blanks to describe the testing process in Scrum sprints.
During a [1], the [2] plans testing tasks, and the [3] performs the tests.
In Sprint Planning, the Product Owner helps prioritize testing tasks, and the Development Team performs the tests during the Sprint.