use of com.developmentontheedge.be5.api.services.Meta in project be5 by DevelopmentOnTheEdge.
the class ResponseTest method testJsonObject.
@Test
public void testJsonObject() {
JsonApiModel jsonApiModel = JsonApiModel.data(new ResourceData("testType", "test", Collections.singletonMap(SELF_LINK, "url")), Collections.singletonMap(TIMESTAMP_PARAM, 1503291145939L));
response.sendAsJson(jsonApiModel);
verify(writer).append(doubleQuotes("{" + "'data':{'attributes':'test','links':{'self':'url'},'type':'testType'}," + "'meta':{'_ts_':1503291145939}" + "}"));
}
Aggregations