@Test void contextLoads() { String ids = "1,2,3,4,5,6"; String[] items = ids.split(","); List<Integer> appIdList = Stream.of(items).map(I...