public ExecutionResult assertTasksNotSkipped(String... taskPaths) { Set<String> expected = new HashSet<String>(Arrays.asList(taskPaths)); Set<String> notSkipped = getExecutedTasks(); assertThat(notSkipped, equalTo(expected)); return this; }
public ExecutionResult assertTasksExecuted(String... taskPaths) { List<String> expected = Arrays.asList(taskPaths); assertThat(plannedTasks, equalTo(expected)); return this; }