verify(dataStore);
}
@Test
public void testResolveCurrentAttributes() throws Exception {
PlaceholderResolver resolver = getContainerPlaceholderResolver();
assertEquals(ip,resolver.resolve(fabricService, null, null, null, "container:ip"));
assertEquals(localhostname,resolver.resolve(fabricService, null, null, null, "container:localhostname"));
assertEquals(bindaddress,resolver.resolve(fabricService, null, null, null, "container:bindaddress"));
assertEquals(containerResolver,resolver.resolve(fabricService, null, null, null, "container:resolver"));
verify(fabricService);
verify(dataStore);
}