Assert.assertEquals(prfA, getProxy().getProfile("1.0", "prfA"));
// updateProfile
prfA = getProxy().getProfile("1.0", "prfA");
pbA10 = ProfileBuilder.Factory.createFrom(prfA.toProfile());
pbA10.addConfiguration("pidB", "keyB", "valB");
prfA = getProxy().updateProfile(new ProfileState(pbA10.getProfile()));
Assert.assertEquals("prfA", prfA.getId());
Assert.assertEquals("1.0", prfA.getVersion());
Assert.assertTrue(prfA.getAttributes().isEmpty());
Assert.assertEquals("valA", prfA.getConfiguration("pidA").get("keyA"));