我有许多数据库集成测试使用以下注释进行事务回滚:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:ApplicationContext-DAOs.xml"})
@Transactional
测试通过了,但是当我运行它们时,Spring 认为有必要在 INFO 级别记录标准错误!它记录以下内容:
19/11/2010 16:49:11 org.springframework.test.context.TestContextManager
retrieveTestExecutionListeners
INFO: @TestExecutionListeners is not present for class [class my.SomeDAOTest]:
using defaults.
etc for many, many lines ...
我在哪里关闭它?