我正在写一些Jersey TestNG测试。出于调试目的,我想查看TestNG运行的实际请求。我怎样才能做到这一点?
最佳答案
JerseyTest
提供了enable(...)
方法,该方法使您可以控制在TestProperties
类中定义和描述的属性的配置值。
public class MyTest extends JerseyTestNg {
// rest omitted
protected Application configure() {
// rest omitted
enable(TestProperties.LOG_TRAFFIC);
enable(TestProperties.DUMP_ENTITY);
}
上面的代码段支持测试流量日志记录以及将HTTP消息实体作为流量日志记录的一部分进行转储。
有关更多详细信息,请参见here。