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"),
new CumulocityCredentials(p.get("cumulocity.tenant"),
p.get("cumulocity.user"),
p.get("cumulocity.password"),
null),
5);
}