* Rpc called with incomplete request proto
*/
public void testIncompleteRequest() throws IOException {
// Create data
String resdata = "Response Data";
Request request = Request.newBuilder().buildPartial(); // required missing
Response response = Response.newBuilder().setStrData(resdata).build();
socket.withResponseProto(response);
// Call non-blocking method
callRpc(request, ErrorReason.INVALID_REQUEST_PROTO);