protected String createPath(String name, String version, String methodPath) {
return "/_ah/api/" + name + "/" + version + "/" + methodPath;
}
protected URL toHttps(URL url) throws MalformedURLException {
UrlLifecycleEvent event = TestLifecycles.createUrlLifecycleEvent(getClass(), url);
TestLifecycles.before(event);
return event.getHttps();
}