微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

从 Java 8 迁移到 Java 11 的单元测试失败了

如何解决从 Java 8 迁移到 Java 11 的单元测试失败了

我正在将我的项目从 Java 8 迁移到 Java 11。所以我使用了 Spring 5.1.0、Java 11、Eclipse 4.16 和 Tomcat 9。我能够成功构建源代码。但是说到测试,他们就失败了。

这是我在 pom.xml 中用于测试的内容

<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.12</version>
   <scope>test</scope>
   <type>jar</type>
</dependency>
<dependency>
   <groupId>org.mockito</groupId>
   <artifactId>mockito-core</artifactId>
   <version>2.27.0</version>
   <scope>test</scope>
</dependency>
<dependency>
   <groupId>org.powermock</groupId>
   <artifactId>powermock-module-junit4</artifactId>
   <version>2.0.2</version>
   <scope>test</scope>
</dependency>
<dependency>
   <groupId>org.powermock</groupId>
   <artifactId>powermock-api-mockito2</artifactId>
   <version>2.0.2</version>
   <scope>test</scope>
</dependency> 

并且我的测试用例在 Java 8 中使用上述依赖项运行得非常好。但是当我将代码迁移到 Java 11 时,我遇到了以下异常。

ERROR: org.springframework.test.context.TestContextManager - Caught exception while allowing 
TestExecutionListener 
[org.springframework.test.context.support.DependencyInjectionTestExecutionListener@54e063d] to 
prepare test instance [com.test.someTest2@4293943]

java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:122) ~[Spring-test-5.1.0.RELEASE.JAR:5.1.0.RELEASE]
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DefaultTestCDependencyInjectionTestExecutionListenerontext.java:122) ~[Spring-test-5.1.0.RELEASE.JAR:5.1.0.RELEASE]
at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DefaDefaultTestCDependencyInjectionTestExecutionListenerontextultTestContext.java:122) ~[Spring-test-5.1.0.RELEASE.JAR:5.1.0.RELEASE]
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:312) ~[Spring-test-5.1.0.RELEASE.JAR:5.1.0.RELEASE]
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:211) ~[Spring-test-5.1.0.RELEASE.JAR:5.1.0.RELEASE]

示例测试类结构

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:test-context.xml"})
public class SomeTestClass {
   ...
}

由于提到的异常而失败。但是,我做了一些研究并找到了一种解决方法,即 更改自:

@ContextConfiguration(locations = {"classpath:test-context.xml"})

为此:

@ContextConfiguration(locations = {"classpath*:/spring/test-context.xml"})

它有效。但问题是我不允许编辑源代码。如何实现?

解决方法

如果包含“spring”目录的目录是您的类路径中的内容,而不是“spring”目录本身,那么这不是“解决方法”,而是“修复”。如果不允许您更改任何内容,那么您也无法修复任何内容。

,

根据您的修复,test-context.xml 现在似乎位于 classpath*:/spring/test-context.xml。因此,您可以尝试将 test-context.xml 所在的 spring 文件夹也添加到类路径中,然后它应该可以工作。此解决方案无需更改代码。您可以在 How do I add a directory to the eclipse classpath?

阅读如何操作

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。