- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
为了 DRY,我想在父类中定义我的 ContextConfiguration 并让我的所有测试类继承它,如下所示:
父类:
package org.my;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "/org/my/Tests-context.xml")
public abstract class BaseTest {
}
子类:
package org.my;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(inheritLocations = true)
public class ChildTest extends BaseTest {
@Inject
private Foo myFoo;
@Test
public void myTest() {
...
}
}
根据ContextConfiguration docs 我应该能够继承 parent 的位置,但我无法让它工作。 Spring 仍在默认位置 (/org/my/ChildTest-context.xml
) 中寻找文件,找不到时会 barfs。我试过以下但没有运气:
我正在使用 spring-test 3.0.7 和 JUnit 4.8.2。
最佳答案
删除子类上的 @ContextConfiguration(inheritLocations = true)
。 inheritLocations
默认设置为 true。
通过添加 @ContextConfiguration(inheritLocations = true)
注释而不指定位置,您告诉 Spring 通过添加默认上下文 /org 来扩展资源位置列表/my/ChildTest-context.xml
。
尝试这样的事情:
package org.my;
@RunWith(SpringJUnit4ClassRunner.class)
public class ChildTest extends BaseTest {
@Inject
private Foo myFoo;
@Test
public void myTest() {
...
}
}
关于java - 为什么我的测试不能从其父级继承其 ContextConfiguration 位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14403923/
假设我有一个这样的父测试类: @ContextConfiguration(loader = AnnotationConfigContextLoader.class, classes = { MyCus
如果我有 xml 配置文件,我会这样写: @ContextConfiguration(locations = "testContext.xml") 但是如果我通过注释标记我的bean,我必须写什么?
我有一个 spring 单元测试,它扩展了其他项目(tests-common)中的其他测试。我的上下文文件 (my-context.xml) 与 MyTest 位于同一包中。基本上下文文件(“base
我正在尝试创建某种集成测试环境,但当测试上下文框架没有为我的 bean 创建事务代理时遇到问题。我的代码: JUnit 类:FileServiceImplTest @RunWith(SpringJUn
我刚刚空降到一个 spring 项目中,他们不相信单元测试。 我正在尝试建立自己的单元测试环境。 我可以知道注释 @ContextConfiguration 指的是什么吗? @Repository 呢
我在我的项目中创建了一个新测试。对于这个,我使用了 @ContextConfiguration 和一个内部配置类,与测试在同一个类中。但是现在我的其他测试都失败了,因为它们正在使用新测试的配置。 这怎
我正在使用 @ContextConfiguration 注释来管理我的应用程序中的配置。创建配置以便它们仅提供由给定模块公开的 beans。因此,给定模块使用的一些 bean 不一定直接导入。示例:
我正在运行下一个测试: import static org.junit.Assert.assertEquals; import org.junit.Test; import org.junit.run
我使用以下配置进行数据库集成测试: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "class
我正在学习Java和Spring MVC。我找到了这段代码: @ContextConfiguration(locations = { "classpath: com/myname/spring/jun
我正在从我的存储库项目编写集成测试,它需要加载我的基础设施项目的 IT 测试上下文,但由于某些原因,它因一些奇怪的异常而失败 java.lang.ArrayStoreException: sun.r
在下面的测试类中 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.fa
为了 DRY,我想在父类中定义我的 ContextConfiguration 并让我的所有测试类继承它,如下所示: 父类: package org.my; @RunWith(SpringJUnit4C
在我们的项目中,我们正在编写一个测试来检查 Controller 是否返回正确的模型 View @Test public void controllerReturnsModelToOverzi
我有这个空的测试类 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration public class FindHandlerTest
当我的测试类作为 JUnit Test 运行时,控制台显示: INFO: Neither @ContextConfiguration nor @ContextHierarchy found for t
我目前正在使用 springockito-annotations,这需要 @RunWith 和 @ContextConfiguration 注释才能工作。我想将这些注释放在我的测试的父类(super
我们有使用元注释的测试类: @WebAppConfiguration @ContextHierarchy({ @ContextConfiguration(locations = {"/web/
我遇到过这样的情况。我有一个 junit 测试类,因为我提到了 @ContextConfiguration但是该类从主/资源和其中包含的其他文件(DataSource.xml 和Hibernate.x
我想知道是否有一种方法可以减少我们当前为集成测试编写的样板文件的数量。 罪魁祸首是 ContextConfiguration,我们当前向其中发送了 7 个不同的字符串。 我们的一项测试如下所示(有效负
我是一名优秀的程序员,十分优秀!