Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorslewis2010-01-26 19:07:34 +0000
committerslewis2010-01-26 19:07:34 +0000
commit9f52ca177dea4572e019aaf322b6ca14ef62901c (patch)
tree6f69e4aa44cdc49a9eb50027fbf4361d176459e1 /tests
parentbf490a712e756fc871a245c44b22c445a2be8a37 (diff)
downloadorg.eclipse.ecf-9f52ca177dea4572e019aaf322b6ca14ef62901c.tar.gz
org.eclipse.ecf-9f52ca177dea4572e019aaf322b6ca14ef62901c.tar.xz
org.eclipse.ecf-9f52ca177dea4572e019aaf322b6ca14ef62901c.zip
Removed ContainerExtensionTest
Diffstat (limited to 'tests')
-rw-r--r--tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/core/ContainerExtensionTest.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/core/ContainerExtensionTest.java b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/core/ContainerExtensionTest.java
deleted file mode 100644
index 43b281a01..000000000
--- a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/core/ContainerExtensionTest.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*******************************************************************************
-* Copyright (c) 2009 Composent, Inc. and others. All rights reserved. This
-* program and the accompanying materials are made available under the terms of
-* the Eclipse Public License v1.0 which accompanies this distribution, and is
-* available at http://www.eclipse.org/legal/epl-v10.html
-*
-* Contributors:
-* Composent, Inc. - initial API and implementation
-******************************************************************************/
-package org.eclipse.ecf.tests.core;
-
-import junit.framework.TestCase;
-
-import org.eclipse.ecf.core.IContainer;
-import org.eclipse.ecf.core.IContainerManager;
-import org.eclipse.ecf.internal.tests.Activator;
-
-public class ContainerExtensionTest extends TestCase {
-
- private static final String TEST_CLIENTID = "foo1";
- private static final String TEST_SERVERID = "ecftcp://localhost:32111/server";
-
- IContainerManager containerManager;
-
- protected void setUp() throws Exception {
- super.setUp();
- containerManager = Activator.getDefault().getContainerManager();
- }
-
- public void testContainerExtension() {
- IContainer[] containers = containerManager.getAllContainers();
- assertTrue(containers != null);
- assertNotNull(containerManager.getContainer(Activator.getDefault().getIDFactory().createStringID(TEST_CLIENTID)));
- assertNotNull(containerManager.getContainer(Activator.getDefault().getIDFactory().createStringID(TEST_SERVERID)));
- }
-}

Back to the top