Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbvosburgh2007-10-10 16:25:28 +0000
committerbvosburgh2007-10-10 16:25:28 +0000
commit4575fe951ae35c03d3b72756563ebcda9a77d656 (patch)
tree2f6fbf32056c4d0bc7ce4f6f6addfcfef370606a /jpa/tests/org.eclipse.jpt.db.tests
parentce78078caefe4a478e47e72e8d1fcdd768210ae2 (diff)
downloadwebtools.dali-4575fe951ae35c03d3b72756563ebcda9a77d656.tar.gz
webtools.dali-4575fe951ae35c03d3b72756563ebcda9a77d656.tar.xz
webtools.dali-4575fe951ae35c03d3b72756563ebcda9a77d656.zip
[201159] model rework
Diffstat (limited to 'jpa/tests/org.eclipse.jpt.db.tests')
-rw-r--r--jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/DTPPlatformTests.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/DTPPlatformTests.java b/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/DTPPlatformTests.java
index ae625c9be6..c92c3f826f 100644
--- a/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/DTPPlatformTests.java
+++ b/jpa/tests/org.eclipse.jpt.db.tests/src/org/eclipse/jpt/db/tests/internal/platforms/DTPPlatformTests.java
@@ -1,9 +1,9 @@
/*******************************************************************************
- * Copyright (c) 2006 - 2007 Oracle. 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.
- *
+ * Copyright (c) 2006, 2007 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
@@ -80,7 +80,7 @@ public abstract class DTPPlatformTests extends TestCase {
protected void setUp() throws Exception {
super.setUp();
- this.connectionRepository.initializeListeners();
+ this.connectionRepository.start();
if( this.platformIsNew()) {
this.loadPlatformProperties();
@@ -94,9 +94,9 @@ public abstract class DTPPlatformTests extends TestCase {
}
protected void tearDown() throws Exception {
+
+ this.connectionRepository.stop();
super.tearDown();
-
- this.connectionRepository.disposeListeners();
}
// ********** tests **********

Back to the top