package org.apache.tuscany.das.ldap.schema.embedded.setup.test; import javax.naming.NamingException; import org.apache.tuscany.das.ldap.constants.DASConstants; public class EcoreSchemaAndDASContextsSetupTest extends EcoreSchemaAndDASContextsSetup implements DASConstants { public void tearDown() throws NamingException, Exception { super.tearDown(); } public void setUp() throws NamingException, Exception { super.setUp(); } public void testConnect() { assertNotNull(schemaPartitionContext); } public void testCreateEcoreSchemaSubContext() { assertNotNull(ecoreSchemaSubContext); } public void testCreateEcoreObjectClassesContext() { assertNotNull(ecoreObjectClassesContext); } public void testCreateEcoreAttributeTypesContext() { assertNotNull(ecoreAttributeTypesContext); } public void testCreateEcoreSyntaxesContext() { assertNotNull(ecoreSyntaxesContext); } public void testCreateDasModelContext() { assertNotNull(rootContext); } public void testCreateDasMetaContext() { assertNotNull(metaContext); } }