@Test(groups = "functional", testName = "topologyaware.TopologyInfoBroadcastTest")
public class TopologyInfoBroadcastTest extends MultipleCacheManagersTest {
@Override
protected void createCacheManagers() throws Throwable {
GlobalConfiguration gc1 = GlobalConfiguration.getClusteredDefault();
updatedSiteInfo(gc1, "s0", "r0", "m0");
EmbeddedCacheManager cm1 = TestCacheManagerFactory.createCacheManager(gc1, getClusterConfig());
cacheManagers.add(cm1);
GlobalConfiguration gc2 = GlobalConfiguration.getClusteredDefault();
updatedSiteInfo(gc2, "s1", "r1", "m1");
EmbeddedCacheManager cm2 = TestCacheManagerFactory.createCacheManager(gc2, getClusterConfig());
cacheManagers.add(cm2);
GlobalConfiguration gc3 = GlobalConfiguration.getClusteredDefault();
updatedSiteInfo(gc3, "s2", "r2", "m2");
EmbeddedCacheManager cm3 = TestCacheManagerFactory.createCacheManager(gc3, getClusterConfig());
cacheManagers.add(cm3);
log.info("Here it starts");