Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openmrs/openmrs-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 788ec592a1ee
Choose a base ref
...
head repository: openmrs/openmrs-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 450d16926c44
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 2, 2013

  1. Copy the full SHA
    30a4a3c View commit details

Commits on Sep 5, 2013

  1. Merge pull request #397 from NameFILIP/TRUNK-4051

    TRUNK-4051: @SkipBaseSetup annotation is not inherited
    dkayiwa committed Sep 5, 2013
    Copy the full SHA
    450d169 View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 api/src/test/java/org/openmrs/test/SkipBaseSetup.java
2 changes: 2 additions & 0 deletions api/src/test/java/org/openmrs/test/SkipBaseSetup.java
Original file line number Diff line number Diff line change
@@ -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;
@@ -15,6 +16,7 @@
*
* @see BaseContextSensitiveTest
*/
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD, ElementType.TYPE })
public @interface SkipBaseSetup {