Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/InheritanceAnnotationTablePerClassAction.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/InheritanceAnnotationTablePerClassAction.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/InheritanceAnnotationTablePerClassAction.java b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/InheritanceAnnotationTablePerClassAction.java
index 4115068ef..093933f6f 100755
--- a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/InheritanceAnnotationTablePerClassAction.java
+++ b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/emf/annotations/InheritanceAnnotationTablePerClassAction.java
@@ -182,7 +182,8 @@ public class InheritanceAnnotationTablePerClassAction extends AbstractTestAction
// eventhough at global level one inheritance strategy is used this should differ for
// individual
// class hierarchies as enforced by the annotations
- assertTrue(store.isInheritanceStrategy(InternationalPriceImpl.class, InheritanceType.TABLE_PER_CLASS));
+ assertTrue(store.isInheritanceStrategy(InternationalPriceImpl.class,
+ InheritanceType.TABLE_PER_CLASS));
assertTrue(store.isInheritanceStrategy(UKAddressImpl.class, InheritanceType.JOINED));
assertTrue(store.isInheritanceStrategy(USAddressImpl.class, InheritanceType.JOINED));
assertTrue(store.isInheritanceStrategy(DistrictUKAddressImpl.class, InheritanceType.JOINED));
@@ -218,7 +219,8 @@ public class InheritanceAnnotationTablePerClassAction extends AbstractTestAction
}
}
} catch (final SQLException e) {
- throw new StoreTestException("Sql exception when retrieving objects based on discriminator values", e);
+ throw new StoreTestException(
+ "Sql exception when retrieving objects based on discriminator values", e);
}
}
} \ No newline at end of file

Back to the top