Use public AssumptionViolatedException in Assume

JUnit 4.12 created a 'public' version of the previously 'internal'
AssumptionViolatedException.

This commit upgrades Spring's Assume class to use this new public
version.
This commit is contained in:
Sam Brannen
2014-12-10 00:29:52 +01:00
parent d8ef666764
commit 5aaed147d5

View File

@@ -21,7 +21,7 @@ import java.lang.reflect.Method;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.junit.internal.AssumptionViolatedException;
import org.junit.AssumptionViolatedException;
import org.springframework.util.ClassUtils;