protected TemplateUrlParser templateUrlParser = mock(TemplateUrlParser.class);
protected PlatformApiRepresentation platformApiRepresentation;
@Before
public void setUp() throws Exception {
platformApiRepresentation = new PlatformApiRepresentation();
when(restConnector.get(PLATFORM_URL, PlatformMediaType.PLATFORM_API, PlatformApiRepresentation.class))
.thenReturn(platformApiRepresentation);
}