Open BobCAE opened 2 years ago
Here is the generated test method code:
public void testCase() {
MiniClient c = new MiniClient(mainPath);
c.setConnectorEndpoint(connector.getHttpEndpoint());
try {
c.setLogin(AnonymousAgentImpl.IDENTIFIER, "");
ClientResponse result = c.sendRequest("POST", "/dishes/{id}/ratings", """
{"comment":"lecker","stars":"1"}
""", "application/json", "*/*", new HashMap<>(), "null");
Assert.assertEquals(201, result.getHttpCode());
} catch (Exception e) {
e.printStackTrace();
fail("Exception: " + e);
}
}
Request method
POST
Request Path
/dishes/{id}/ratings
Request Body
Expected Status Code
201 (Created)
Response Body Assertions