Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.examples.hibernate.client/src/org/eclipse/emf/cdo/examples/hibernate/client/BaseTest.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.examples.hibernate.client/src/org/eclipse/emf/cdo/examples/hibernate/client/BaseTest.java188
1 files changed, 94 insertions, 94 deletions
diff --git a/plugins/org.eclipse.emf.cdo.examples.hibernate.client/src/org/eclipse/emf/cdo/examples/hibernate/client/BaseTest.java b/plugins/org.eclipse.emf.cdo.examples.hibernate.client/src/org/eclipse/emf/cdo/examples/hibernate/client/BaseTest.java
index 13a6d69ad0..5f1b609fd9 100644
--- a/plugins/org.eclipse.emf.cdo.examples.hibernate.client/src/org/eclipse/emf/cdo/examples/hibernate/client/BaseTest.java
+++ b/plugins/org.eclipse.emf.cdo.examples.hibernate.client/src/org/eclipse/emf/cdo/examples/hibernate/client/BaseTest.java
@@ -1,94 +1,94 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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:
- * Eike Stepper - initial API and implementation
- */
-package org.eclipse.emf.cdo.examples.hibernate.client;
-
-import org.eclipse.emf.cdo.examples.company.CompanyPackage;
-import org.eclipse.emf.cdo.net4j.CDONet4jSession;
-import org.eclipse.emf.cdo.net4j.CDONet4jSessionConfiguration;
-import org.eclipse.emf.cdo.net4j.CDONet4jUtil;
-import org.eclipse.emf.cdo.session.CDOSession;
-
-import org.eclipse.net4j.Net4jUtil;
-import org.eclipse.net4j.connector.IConnector;
-import org.eclipse.net4j.tcp.TCPUtil;
-import org.eclipse.net4j.util.container.ContainerUtil;
-import org.eclipse.net4j.util.container.IManagedContainer;
-import org.eclipse.net4j.util.om.OMPlatform;
-import org.eclipse.net4j.util.om.log.PrintLogHandler;
-import org.eclipse.net4j.util.om.trace.PrintTraceHandler;
-
-import junit.framework.TestCase;
-
-/**
- * This class contains code to connect to a CDO server in a standalone manner . So the junit test is not running inside
- * an OSGI container.
- *
- * @author Martin Taal
- */
-public class BaseTest extends TestCase
-{
- protected static final String REPO_NAME = "repo1"; //$NON-NLS-1$
-
- protected static final String CONNECTION_ADDRESS = "localhost:2036"; //$NON-NLS-1$
-
- private CDONet4jSessionConfiguration sessionConfiguration = null;
-
- /**
- * Opens a CDOSession, does not register an EPackage with the session. This should be done by the caller.
- */
- protected CDOSession openSession()
- {
- if (sessionConfiguration == null)
- {
- initialize();
- }
-
- final CDONet4jSession cdoSession = sessionConfiguration.openNet4jSession();
- cdoSession.getPackageRegistry().putEPackage(CompanyPackage.eINSTANCE);
- return cdoSession;
- }
-
- /**
- * Initializes the connection and creates a {@link CDONet4jSessionConfiguration} which is stored in a member of this
- * class.
- */
- protected void initialize()
- {
- OMPlatform.INSTANCE.setDebugging(true);
- OMPlatform.INSTANCE.addLogHandler(PrintLogHandler.CONSOLE);
- OMPlatform.INSTANCE.addTraceHandler(PrintTraceHandler.CONSOLE);
-
- // Prepare container
- final IManagedContainer container = ContainerUtil.createContainer();
- Net4jUtil.prepareContainer(container); // Register Net4j factories
- TCPUtil.prepareContainer(container); // Register TCP factories
- CDONet4jUtil.prepareContainer(container); // Register CDO factories
- // LifecycleUtil.activate(container);
- container.activate();
-
- // Create connector
- final IConnector connector = TCPUtil.getConnector(container, CONNECTION_ADDRESS);
-
- // Create configuration
- sessionConfiguration = CDONet4jUtil.createNet4jSessionConfiguration();
- sessionConfiguration.setConnector(connector);
- sessionConfiguration.setRepositoryName(REPO_NAME);
- }
-
- /**
- * Nullifies the session configuration so that a new test will start with a new one.
- */
- @Override
- protected void tearDown() throws Exception
- {
- sessionConfiguration = null;
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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:
+ * Eike Stepper - initial API and implementation
+ */
+package org.eclipse.emf.cdo.examples.hibernate.client;
+
+import org.eclipse.emf.cdo.examples.company.CompanyPackage;
+import org.eclipse.emf.cdo.net4j.CDONet4jSession;
+import org.eclipse.emf.cdo.net4j.CDONet4jSessionConfiguration;
+import org.eclipse.emf.cdo.net4j.CDONet4jUtil;
+import org.eclipse.emf.cdo.session.CDOSession;
+
+import org.eclipse.net4j.Net4jUtil;
+import org.eclipse.net4j.connector.IConnector;
+import org.eclipse.net4j.tcp.TCPUtil;
+import org.eclipse.net4j.util.container.ContainerUtil;
+import org.eclipse.net4j.util.container.IManagedContainer;
+import org.eclipse.net4j.util.om.OMPlatform;
+import org.eclipse.net4j.util.om.log.PrintLogHandler;
+import org.eclipse.net4j.util.om.trace.PrintTraceHandler;
+
+import junit.framework.TestCase;
+
+/**
+ * This class contains code to connect to a CDO server in a standalone manner . So the junit test is not running inside
+ * an OSGI container.
+ *
+ * @author Martin Taal
+ */
+public class BaseTest extends TestCase
+{
+ protected static final String REPO_NAME = "repo1"; //$NON-NLS-1$
+
+ protected static final String CONNECTION_ADDRESS = "localhost:2036"; //$NON-NLS-1$
+
+ private CDONet4jSessionConfiguration sessionConfiguration = null;
+
+ /**
+ * Opens a CDOSession, does not register an EPackage with the session. This should be done by the caller.
+ */
+ protected CDOSession openSession()
+ {
+ if (sessionConfiguration == null)
+ {
+ initialize();
+ }
+
+ final CDONet4jSession cdoSession = sessionConfiguration.openNet4jSession();
+ cdoSession.getPackageRegistry().putEPackage(CompanyPackage.eINSTANCE);
+ return cdoSession;
+ }
+
+ /**
+ * Initializes the connection and creates a {@link CDONet4jSessionConfiguration} which is stored in a member of this
+ * class.
+ */
+ protected void initialize()
+ {
+ OMPlatform.INSTANCE.setDebugging(true);
+ OMPlatform.INSTANCE.addLogHandler(PrintLogHandler.CONSOLE);
+ OMPlatform.INSTANCE.addTraceHandler(PrintTraceHandler.CONSOLE);
+
+ // Prepare container
+ final IManagedContainer container = ContainerUtil.createContainer();
+ Net4jUtil.prepareContainer(container); // Register Net4j factories
+ TCPUtil.prepareContainer(container); // Register TCP factories
+ CDONet4jUtil.prepareContainer(container); // Register CDO factories
+ // LifecycleUtil.activate(container);
+ container.activate();
+
+ // Create connector
+ final IConnector connector = TCPUtil.getConnector(container, CONNECTION_ADDRESS);
+
+ // Create configuration
+ sessionConfiguration = CDONet4jUtil.createNet4jSessionConfiguration();
+ sessionConfiguration.setConnector(connector);
+ sessionConfiguration.setRepositoryName(REPO_NAME);
+ }
+
+ /**
+ * Nullifies the session configuration so that a new test will start with a new one.
+ */
+ @Override
+ protected void tearDown() throws Exception
+ {
+ sessionConfiguration = null;
+ }
+}

Back to the top