public void testGetResourcePath1() throws Exception {
AxisServiceGroup asvGroup = new AxisServiceGroup(ac);
asvGroup.setServiceGroupName("testServiceGroup2");
AxisService asv = new AxisService("testService2");
asvGroup.addService(asv);
pf.getServiceGroupPM().handleNewServiceGroupAddition(asvGroup);
pf.getServicePM().handleNewServiceAddition(asv);
String path = PersistenceUtils.getResourcePath(asv);
assertTrue(path.equals(RegistryResources.SERVICE_GROUPS +
"testServiceGroup2/services/testService2"));