String result = controller.history(model, 123L, 1234L, null, null);
// StepExecution, history and progress
assertEquals(3, model.size());
assertEquals("jobs/executions/step/progress", result);
assertTrue(model.containsKey("stepExecutionHistory"));
StepExecutionHistory history = (StepExecutionHistory) model.get("stepExecutionHistory");
// The wildcard is intentional:
assertEquals("step:partition*", history.getStepName());
EasyMock.verify(jobService);