使用@DirtiesContext强制重置。例如,我有:
@ContextConfiguration(classes={BlahTestConfig.class})@DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD)public class SomeTest { @Autowired XXXX xx; @Autowired YYYY yy; @Before public void setUp() { MockitoAnnotations.initMocks(this); when(YYYY.newYY()).thenReturn(zz); } @Test public void testSomeTest() { XX.changeSomething("StringTest"); XX.doSomething(); check_for_effects(); } @Test public void testSomeOtherTest() { XX.changeSomething("SomeotherString"); XX.doSomething(); check_for_effects(); }
从Spring文档
DirtiesContext
表示在测试执行期间对基础Spring ApplicationContext进行了如下污染(修改),并且无论测试是否通过,都应将其关闭:
在当前测试类之后,当在类模式设置为AFTER_CLASS的类上声明时,这是默认的类模式。
在当前测试类中的每个测试方法之后,在类模式设置为AFTER_EACH_TEST_METHOD的类上声明时。
当前测试之后,当在方法上声明时。
如果测试已修改上下文(例如,通过替换bean定义),请使用此注释。随后的测试提供了新的上下文。[注] @DirtiesContext在JUnit 3.8中的局限性
在JUnit 3.8环境中,@DirtiesContext仅在方法上受支持,因此在类级别不受支持。
你可以将@DirtiesContext用作同一类中的类级和方法级注释。在这种情况下,在任何带注释的方法之后以及整个类之后,ApplicationContext都被标记为dirties。如果将ClassMode设置为AFTER_EACH_TEST_METHOD,则在类中的每个测试方法之后将上下文标记为dirties。
@DirtiesContextpublic class ContextDirtyingTests { // some tests that result in the Spring container being dirtied}@DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD)public class ContextDirtyingTests { // some tests that result in the Spring container being dirtied}@DirtiesContext@Testpublic void testProcessWhichDirtiesAppCtx() { // some logic that results in the Spring container being dirtied}
当应用程序上下文标记为脏时,将其从测试框架的缓存中删除并关闭;因此,可以为需要上下文具有相同资源位置集的任何后续测试重建基础Spring容器。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)