final Map<String, String> newProps = Maps.newHashMap();
oldProps.put("p1", "v1-converted");
oldProps.put("p3", "v3");
when(descriptor.convert(oldProps, 0)).thenReturn(newProps);
underTest.load();
verify(capabilityStorage).getAll();
verify(descriptor, atLeastOnce()).version();