stable

Clone or download

Read-only

feat(plan-iterations): Retrieve program increment info

part of: story #21385 display Program's iterations How to test: - Go to the plan iteration UI - Focus the empty text state - Take a look at the parent div data attributes --> There is a data-program-increment attribute holding the current increment info Also, there should be a Not Found error when the provided id does not reference a valid program increment. Change-Id: I375f12e3f0593570e8242269816cd6989552632e

Modified Files

Name
A plugins/program_management/include/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementInfoBuilder.php +52 −0 Go to diff View file
M plugins/program_management/include/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementsRetriever.php +10 −0 Go to diff View file
M plugins/program_management/include/Adapter/Program/DisplayPlanIterationsPresenter.php +7 −5 Go to diff View file
M plugins/program_management/include/DisplayPlanIterationsController.php +16 −1 Go to diff View file
A plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/BuildProgramIncrementInfo.php +33 −0 Go to diff View file
M plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/PlannedIterations.php +16 −2 Go to diff View file
A plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/ProgramIncrementInfo.php +37 −0 Go to diff View file
M plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/RetrieveProgramIncrements.php +2 −0 Go to diff View file
M plugins/program_management/include/program_managementPlugin.php +38 −3 Go to diff View file
M plugins/program_management/templates/plan-iterations.mustache +1 −0 Go to diff View file
M plugins/program_management/tests/Domain/Program/Backlog/ProgramIncrement/PlannedIterationsTest.php +7 −0 Go to diff View file
A plugins/program_management/tests/unit/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementInfoBuilderTest.php +46 −0 Go to diff View file
M plugins/program_management/tests/unit/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementsRetrieverTest.php +56 −1 Go to diff View file
M plugins/program_management/tests/unit/Adapter/Program/DisplayPlanIterationsPresenterTest.php +8 −1 Go to diff View file
A plugins/program_management/tests/unit/Builder/ProgramIncrementBuilder.php +58 −0 Go to diff View file
M plugins/program_management/tests/unit/DisplayPlanIterationsControllerTest.php +27 −3 Go to diff View file
M plugins/program_management/tests/unit/Domain/Program/Backlog/ProgramIncrement/ProgramIncrementBuilderTest.php +3 −13 Go to diff View file
A plugins/program_management/tests/unit/Stub/BuildProgramIncrementInfoStub.php +50 −0 Go to diff View file
A plugins/program_management/tests/unit/Stub/RetrieveProgramIncrementsStub.php +68 −0 Go to diff View file