@Test
public void usingClientFollow_whenImplicitlySetToNull() throws Exception {
// given
final JsonRepresentation givenAction = Util.givenAction(client, "ActionsEntities", "subListWithOptionalRange");
final ObjectActionRepresentation actionRepr = givenAction.as(ObjectActionRepresentation.class);
final LinkRepresentation invokeLink = actionRepr.getInvoke();
assertThat(invokeLink, isLink(client)
.rel(Rel.INVOKE)
.httpMethod(RestfulHttpMethod.GET)
.href(Matchers.endsWith(":39393/services/ActionsEntities/actions/subListWithOptionalRange/invoke"))
.build());
// when
JsonRepresentation args = JsonRepresentation.newMap();
final RestfulResponse<ActionResultRepresentation> restfulResponse = client.followT(invokeLink, args);
then(restfulResponse);
}