Skip to content

Commit

Permalink
Backporting to 1.9.x: In context-sensitive tests, @SkipBaseSetup
Browse files Browse the repository at this point in the history
annotation is not inherited from superclasses - TRUNK-4051
author:namefilip
  • Loading branch information
dkayiwa committed Sep 9, 2013
1 parent 4d30b5e commit c022c55
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/src/test/java/org/openmrs/test/SkipBaseSetup.java
@@ -1,6 +1,7 @@
package org.openmrs.test;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
Expand All @@ -15,6 +16,7 @@
*
* @see BaseContextSensitiveTest
*/
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD, ElementType.TYPE })
public @interface SkipBaseSetup {
Expand Down

0 comments on commit c022c55

Please sign in to comment.