如何查看契约发送的实际请求

时间:2018-08-23 10:18:56

标签: pact

我是新手,正在使用junit来测试我的提供者。 我的提供程序正在外部主机上运行。 我已将测试目标配置如下:

URL url = new URL("https://<hostname>");
@TestTarget
public final Target target = new HttpTarget(url);

运行测试时,我不断获得502。 控制台输出:

 request for current math skill returns a response which has status code 200
      assert expectedStatus == actualStatus
             |              |  |
             200            |  502
                            false
  1. 如何启用调试级别(使用junit时),以便我可以查看pact发送的实际请求?
  2. 大多数示例都使用localhost作为提供程序。我的提供商在外部托管。我可以使用托管网址作为目标吗?

0 个答案:

没有答案