Repository: logging-log4j2 Updated Branches: refs/heads/master a88c7162d -> 1ebb63f93
Add specific JUnit runner for future-proofing. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/1ebb63f9 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/1ebb63f9 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/1ebb63f9 Branch: refs/heads/master Commit: 1ebb63f937770cb52da0cb18cb60b6460a0de2ad Parents: a88c716 Author: Matt Sicker <[email protected]> Authored: Sat Feb 27 20:15:07 2016 -0600 Committer: Matt Sicker <[email protected]> Committed: Sat Feb 27 20:15:07 2016 -0600 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/util/ReflectionUtilTest.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1ebb63f9/log4j-api/src/test/java/org/apache/logging/log4j/util/ReflectionUtilTest.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/test/java/org/apache/logging/log4j/util/ReflectionUtilTest.java b/log4j-api/src/test/java/org/apache/logging/log4j/util/ReflectionUtilTest.java index 95cb92c..a632ccb 100644 --- a/log4j-api/src/test/java/org/apache/logging/log4j/util/ReflectionUtilTest.java +++ b/log4j-api/src/test/java/org/apache/logging/log4j/util/ReflectionUtilTest.java @@ -20,6 +20,7 @@ import java.util.Stack; import org.junit.Before; import org.junit.Test; +import org.junit.runner.RunWith; import org.junit.runners.BlockJUnit4ClassRunner; import org.junit.runners.ParentRunner; import sun.reflect.Reflection; @@ -27,6 +28,7 @@ import sun.reflect.Reflection; import static org.junit.Assert.*; import static org.junit.Assume.assumeTrue; +@RunWith(BlockJUnit4ClassRunner.class) public class ReflectionUtilTest { @Before
