Map<String, String> conf = new HashMap<String, String>();
conf.put(CoreProfile.KEY_VERSION, "TESTING");
ServiceProfile<CoreProfile> profile = new ServiceProfile<CoreProfile>(
"testing", BasicCoreProfile.class, conf, ProfileContext.system(getClass().getClassLoader()));
CoreProfile instance = profile.newInstance();
assertThat(instance.getVersion(), is("TESTING"));
}