private static PrintStream logps;
try {
// fileoutputstream can be opened in append mode to append the logs every time
// we run
// printstream is enabled for autoflush
logps = new PrintStream(new FileOutputStream("src/test/resources/logfile.txt", true), true);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
4条答案
按热度按时间33qvvth11#
我举一个例子:
字符串
1bqhqjot2#
设置log().all()作为你的响应,就可以了。
k4emjkb13#
对不起,愚蠢的问题(或与我的愿景问题),一切都记录在:
9q78igpj4#
下面是记录到日志文件并进行全局配置以记录所有测试的请求和响应详细信息的步骤
创建静态打印流对象
字符串
在beforeall静态方法中,应用默认实现的请求和响应日志记录过滤器,并使它们能够使用打印流
型
现在我们不需要为请求和响应分别指定log()方法,而且日志也会被发送到日志文件中