Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortle2010-01-05 21:27:38 +0000
committertle2010-01-05 21:27:38 +0000
commitb069e39155ee0d4a83df88c4f5093d61d8acf451 (patch)
tree63a989a898c0288546e478f87b321d4a7770ce73 /jpa/tests/org.eclipse.jpt.core.tests/src
parentcb7bd03175a28d26a99227fb469e2845fab9ed36 (diff)
downloadwebtools.dali-b069e39155ee0d4a83df88c4f5093d61d8acf451.tar.gz
webtools.dali-b069e39155ee0d4a83df88c4f5093d61d8acf451.tar.xz
webtools.dali-b069e39155ee0d4a83df88c4f5093d61d8acf451.zip
297537 - [EclipseLink] Support logging level by category configuration
Diffstat (limited to 'jpa/tests/org.eclipse.jpt.core.tests/src')
-rw-r--r--jpa/tests/org.eclipse.jpt.core.tests/src/org/eclipse/jpt/core/tests/internal/context/persistence/PersistenceUnitTestCase.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jpa/tests/org.eclipse.jpt.core.tests/src/org/eclipse/jpt/core/tests/internal/context/persistence/PersistenceUnitTestCase.java b/jpa/tests/org.eclipse.jpt.core.tests/src/org/eclipse/jpt/core/tests/internal/context/persistence/PersistenceUnitTestCase.java
index 4e2e837544..2417931e9f 100644
--- a/jpa/tests/org.eclipse.jpt.core.tests/src/org/eclipse/jpt/core/tests/internal/context/persistence/PersistenceUnitTestCase.java
+++ b/jpa/tests/org.eclipse.jpt.core.tests/src/org/eclipse/jpt/core/tests/internal/context/persistence/PersistenceUnitTestCase.java
@@ -1,5 +1,5 @@
/*******************************************************************************
-* Copyright (c) 2009 Oracle. All rights reserved.
+* Copyright (c) 2009, 2010 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.
@@ -192,8 +192,8 @@ public abstract class PersistenceUnitTestCase extends ContextModelTestCase
this.verifyHasListeners(this.getModel(), propertyName);
PersistenceUnit.Property property = this.getPersistenceUnit().getProperty(puKey);
- assertTrue("model.itemIsProperty() is false: ", getModel().itemIsProperty(property));
- assertEquals("propertyIdFor() not updated: ", propertyName, getModel().propertyIdOf(property));
+ assertTrue("model.itemIsProperty() is false: ", this.getModel().itemIsProperty(property));
+ assertEquals("propertyIdFor() not updated: ", propertyName, this.getModel().propertyIdOf(property));
}
/**
@@ -204,7 +204,7 @@ public abstract class PersistenceUnitTestCase extends ContextModelTestCase
*/
protected void verifyModelInitialized(String puKey, Object expectedValue) throws Exception {
PersistenceUnit.Property property = this.getPersistenceUnit().getProperty(puKey);
- assertTrue("model.itemIsProperty() is false: ", getModel().itemIsProperty(property));
+ assertTrue("model.itemIsProperty() is false: ", this.getModel().itemIsProperty(property));
assertTrue("PersistenceUnit not populated - populatedPu()", this.propertyValueEquals(puKey, this.getPropertyStringValueOf(expectedValue)));
String propertyName = this.getModel().propertyIdOf(property);

Back to the top