private static PlatformImpl createPlatform() throws IOException {
Properties cumulocityProps = new Properties();
cumulocityProps.load(InventoryIT.class.getClassLoader().getResourceAsStream("cumulocity-test.properties"));
SystemPropertiesOverrider p = new SystemPropertiesOverrider(cumulocityProps);
return new PlatformImpl(
p.get("cumulocity.host"),
p.get("cumulocity.tenant"),
p.get("cumulocity.user"),
p.get("cumulocity.password"),
p.get("cumulocity.applicationKey"));