* 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();
// Create channel
FakeSocket socket = new FakeSocket(false).withResponseProto(response);
SocketRpcChannel rpcChannel = new SocketRpcChannel("host", -1,