Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-08-26 10:11:01 +0000
committerEike Stepper2011-08-26 10:11:01 +0000
commitd850e8067564a7c5d5d217c9afa58ca61134efa9 (patch)
tree9fd5cc976237b1398b05648a54c0135281456ab4 /plugins/org.eclipse.emf.cdo.tests.objectivity/src
parent0d0f0c489b9f244987cafc8dfae1437785fc2e16 (diff)
downloadcdo-d850e8067564a7c5d5d217c9afa58ca61134efa9.tar.gz
cdo-d850e8067564a7c5d5d217c9afa58ca61134efa9.tar.xz
cdo-d850e8067564a7c5d5d217c9afa58ca61134efa9.zip
[355921] [Tests] Constrain tests declaratively
https://bugs.eclipse.org/bugs/show_bug.cgi?id=355921
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.objectivity/src')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.objectivity/src/org/eclipse/emf/cdo/tests/objectivity/ObjyConfig.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.objectivity/src/org/eclipse/emf/cdo/tests/objectivity/ObjyConfig.java b/plugins/org.eclipse.emf.cdo.tests.objectivity/src/org/eclipse/emf/cdo/tests/objectivity/ObjyConfig.java
index 4374296897..46e6972709 100644
--- a/plugins/org.eclipse.emf.cdo.tests.objectivity/src/org/eclipse/emf/cdo/tests/objectivity/ObjyConfig.java
+++ b/plugins/org.eclipse.emf.cdo.tests.objectivity/src/org/eclipse/emf/cdo/tests/objectivity/ObjyConfig.java
@@ -21,19 +21,27 @@ import org.eclipse.emf.cdo.tests.config.impl.RepositoryConfig;
*/
public class ObjyConfig extends RepositoryConfig
{
+ public static final String STORE_NAME = "Objy";
+
private static final long serialVersionUID = 1L;
private static ObjectivityStoreConfig storeConfig = new ObjectivityStoreConfig();
public ObjyConfig(boolean supportingAudits, boolean supportingBranches)
{
- super("Objy", supportingAudits, supportingBranches, IDGenerationLocation.STORE);
+ super(STORE_NAME, supportingAudits, supportingBranches, IDGenerationLocation.STORE);
org.eclipse.emf.cdo.server.internal.objectivity.bundle.OM.DEBUG.setEnabled(true);
org.eclipse.emf.cdo.server.internal.objectivity.bundle.OM.INFO.setEnabled(true);
}
@Override
+ protected String getStoreName()
+ {
+ return STORE_NAME;
+ }
+
+ @Override
protected void deactivateRepositories()
{
super.deactivateRepositories();

Back to the top