私はリソースを持っています:
@Path("/")
public class Resource {
@GET
public Response getResponse() {
//..
final GenericEntity<List<BusinessObject>> entity = new GenericEntity<List<BusinessObject>>(businessobjects) { };
return Response.status(httpResultCode).entity(entity).build();
}
}
Jerseyクライアントを使用せずにこのメソッドを単体テストしたいのですが、Responseオブジェクトの本体を取得する方法がわかりません。うまくいく方法がわかりません。テスト方法は次のとおりです。
@Test
public void testMethod() {
Resource resourceUnderTest = new Resource();
Response response = resourceUnderTest.getResponse();
List<BusinessObject> result = ???;
}
ジャージークライアントを経由すれば、希望する結果を得ることができますが、HTTPリクエストを行わずに、メソッドを直接呼び出すだけです。