Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-05-24 17:20:48 +0000
committerEike Stepper2011-05-24 17:20:48 +0000
commit8fc13b35993f057821fcf4221510746b58a8b94e (patch)
tree7e0e0f4b6fbbe6f1b38e0c5ea7f8952b6039dbdc
parent71ace8b67a0514579ae5d7d04d31880050d25662 (diff)
downloadcdo-8fc13b35993f057821fcf4221510746b58a8b94e.tar.gz
cdo-8fc13b35993f057821fcf4221510746b58a8b94e.tar.xz
cdo-8fc13b35993f057821fcf4221510746b58a8b94e.zip
make @CleanRepositoriesBefore inheritable
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTest.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTest.java
index c1d690f46d..d07628429a 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/ConfigTest.java
@@ -56,6 +56,7 @@ import org.eclipse.net4j.util.tests.AbstractOMTest;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
+import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.text.MessageFormat;
@@ -70,11 +71,13 @@ import junit.framework.TestResult;
*/
public abstract class ConfigTest extends AbstractOMTest implements IConstants
{
+ @Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface CleanRepositoriesBefore
{
}
+ @Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface CleanRepositoriesAfter
{

Back to the top