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.
我有一个 RestEasy 网络服务,它调用 dao 类中的方法。所以我测试了 daos seperatley,这很好。但我不明白我们如何测试网络服务。我的网络服务以 JSON 格式返回响应。我只是想知道,我们可以在多少种情况下测试 Web 服务。Web 服务返回一个列表作为输出,该列表被转换为 Json 响应。
一个简单的测试方法是使用 curl。否则你需要模拟一个webclient。我不知道resteasy如何做到这一点。在泽西岛,它是包裹的一部分。您还可以使用外部测试工具,如 httpunit、htmlunit 或 selenium。