Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除了整合的 HTML 或 XML 报告,我如何才能获得 Spock 测试执行控制台输出或类似于我的应用程序日志?
使用由 log4j 支持的 Gradle 2.11 和 Slf4j。
如果您使用 gradle test命令来运行测试,您可以在命令中包含--info并--debug切换来运行测试。
gradle test
--info
--debug
使用这样的东西来运行你的测试gradle --info test应该在控制台上记录所有的信息语句。
gradle --info test