Description
There are multiple test having similar 'assertion' that do not verify equality:
mockEndpoint.message(0).body().equals(body);
The correct syntax would be:
mockEndpoint.message(0).body().isEqualTo(body);
There are multiple test having similar 'assertion' that do not verify equality:
mockEndpoint.message(0).body().equals(body);
The correct syntax would be:
mockEndpoint.message(0).body().isEqualTo(body);