Junit常见异常及解决办法
异常:
java.lang.IllegalStateException: Failed to load ApplicationContext
解决方法:
java1.8版本只支持spring4.0以上。所以解决方法有两种:1)把sping版本换成4.0以上;2)把jdk调低点。此处我选择把jdk调低点,再次运行。
异常:
java.lang.NoClassDefFoundError: org/junit/runners/model/MultipleFailureException
解决方法:
没有multipleFailureException类,可能是因为你的版本过低引起的,请更换最新版本。
异常:
java.lang.Exception: No tests found matching [{ExactMatcher:fDisplayName=test_sayHello4]
java.lang.NoSuchMethodError: org.springframework.core.annotation.AnnotatedElementUtils.getAnnotationAttributes(Ljava/lang/reflect/AnnotatedElement;Ljava/lang/String;)Lorg/springframework/core/annotation/AnnotationAttributes;
解决方法:
Spring-test版本与junit版本不兼容导致的,可以多试几个版本。
刚开始接触时,对爆红会不知所措,一般来说都是版本兼容问题,更换几个版本试试.