Skip to content

Commit 9637ec5

Browse files
committedSep 9, 2013
Backporting to 1.8.x: In context-sensitive tests, @SkipBaseSetup
annotation is not inherited from superclasses - TRUNK-4051 author:namefilip
1 parent 5018dd5 commit 9637ec5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎api/src/test/java/org/openmrs/test/SkipBaseSetup.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package org.openmrs.test;
22

33
import java.lang.annotation.ElementType;
4+
import java.lang.annotation.Inherited;
45
import java.lang.annotation.Retention;
56
import java.lang.annotation.RetentionPolicy;
67
import java.lang.annotation.Target;
@@ -15,6 +16,7 @@
1516
*
1617
* @see BaseContextSensitiveTest
1718
*/
19+
@Inherited
1820
@Retention(RetentionPolicy.RUNTIME)
1921
@Target( { ElementType.METHOD, ElementType.TYPE })
2022
public @interface SkipBaseSetup {

0 commit comments

Comments
 (0)
Please sign in to comment.