X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Ftopologymanager%2Fintegrationtest%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Ftopologymanager%2FTopologyManagerIT.java;h=7c70342b5c17ede8cb655eb998ed3bb97ebd54b1;hp=296be72a131c078a98cb725541af6f7bdc7e2875;hb=28a7715bbb2057cb23ec55aec890b7d930f5b1fe;hpb=d23124e814e435b60e98a4b6f49433853a97a40f;ds=sidebyside diff --git a/opendaylight/topologymanager/integrationtest/src/test/java/org/opendaylight/controller/topologymanager/TopologyManagerIT.java b/opendaylight/topologymanager/integrationtest/src/test/java/org/opendaylight/controller/topologymanager/TopologyManagerIT.java index 296be72a13..7c70342b5c 100644 --- a/opendaylight/topologymanager/integrationtest/src/test/java/org/opendaylight/controller/topologymanager/TopologyManagerIT.java +++ b/opendaylight/topologymanager/integrationtest/src/test/java/org/opendaylight/controller/topologymanager/TopologyManagerIT.java @@ -39,7 +39,7 @@ public class TopologyManagerIT { // get the OSGI bundle context @Inject private BundleContext bc; - + @Inject private ITopologyManager manager = null; // Configure the OSGi container @@ -132,38 +132,6 @@ public class TopologyManagerIT { } } - @Before - public void areWeReady() { - assertNotNull(bc); - boolean debugit = false; - Bundle b[] = bc.getBundles(); - for (int i = 0; i < b.length; i++) { - int state = b[i].getState(); - if (state != Bundle.ACTIVE && state != Bundle.RESOLVED) { - log.debug("Bundle:" + b[i].getSymbolicName() + " state:" - + stateToString(state)); - debugit = true; - } - } - if (debugit) { - log.debug("Do some debugging because some bundle is " - + "unresolved"); - } - - // Assert if true, if false we are good to go! - assertFalse(debugit); - - ServiceReference r = bc.getServiceReference(ITopologyManager.class - .getName()); - if (r != null) { - this.manager = (ITopologyManager) bc.getService(r); - } - // If StatisticsManager is null, cannot run tests. - assertNotNull(this.manager); - - } - - /** * This test verifies that the isInternal method of the TopologyManager returns true when a node is internal and * not otherwise