Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2006-09-27 07:11:56 +0000
committermtaal2006-09-27 07:11:56 +0000
commit276bedaaa09c8932394da5f5f3a5aa53eab76a7d (patch)
treece5325c725cb6e7f067380a784a14aec37df1559 /tests/org.eclipse.emf.teneo.jpox.test
parente61597787a7f2abdf5847f5780d5cd2973b51b9e (diff)
downloadorg.eclipse.emf.teneo-276bedaaa09c8932394da5f5f3a5aa53eab76a7d.tar.gz
org.eclipse.emf.teneo-276bedaaa09c8932394da5f5f3a5aa53eab76a7d.tar.xz
org.eclipse.emf.teneo-276bedaaa09c8932394da5f5f3a5aa53eab76a7d.zip
Added println
Diffstat (limited to 'tests/org.eclipse.emf.teneo.jpox.test')
-rw-r--r--tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/JPOXTestbed.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/JPOXTestbed.java b/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/JPOXTestbed.java
index 7c0d20a45..585f6f882 100644
--- a/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/JPOXTestbed.java
+++ b/tests/org.eclipse.emf.teneo.jpox.test/src/org/eclipse/emf/teneo/jpox/test/JPOXTestbed.java
@@ -11,7 +11,7 @@
* Martin Taal
* </copyright>
*
- * $Id: JPOXTestbed.java,v 1.29 2006/09/27 06:15:41 mtaal Exp $
+ * $Id: JPOXTestbed.java,v 1.30 2006/09/27 07:11:56 mtaal Exp $
*/
package org.eclipse.emf.teneo.jpox.test;
@@ -40,7 +40,7 @@ import org.jpox.enhancer.JPOXEnhancer;
* The jpox test bed controls the creation of the store and the generation of the mapping file.
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.29 $
+ * @version $Revision: 1.30 $
*/
public class JPOXTestbed extends Testbed {
@@ -118,7 +118,7 @@ public class JPOXTestbed extends Testbed {
* Request a store for the given configuration.
*/
public TestStore createStore(AbstractTest testCase) {
- //System.err.println("RUNNING TEST " + testCase.getName() + " - " + getActiveConfiguration().getName());
+ System.err.println("RUNNING TEST " + testCase.getName() + " - " + getActiveConfiguration().getName());
try {
if (!new File(RUN_BASE_DIR).exists()) {
log.error("Directory for jdo files does not exist " + RUN_BASE_DIR);

Back to the top