diff --git a/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java b/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java index 6f53c044..e8358bbf 100644 --- a/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java +++ b/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java @@ -15,6 +15,7 @@ import io.grpc.ManagedChannelBuilder; import io.grpc.testing.integration.AbstractInteropTest; +import java.io.InputStream; /** Implementation of ClientTester that forwards all calls to the grpc-java AbstractInteropTest. */ public class GrpcJavaClientTester implements ClientTester { @@ -42,6 +43,9 @@ public void emptyUnary() throws Exception { tester.emptyUnary(); } + @Override + public void cacheableUnary() {} + @Override public void largeUnary() throws Exception { tester.largeUnary(); @@ -87,6 +91,24 @@ public void emptyStream() throws Exception { tester.emptyStream(); } + @Override + public void computeEngineCreds(String serviceAccount, String oauthScope) throws Exception {} + + @Override + public void serviceAccountCreds(String jsonKey, InputStream credentialsStream, String authScope) + throws Exception {} + + @Override + public void jwtTokenCreds(InputStream serviceAccountJson) throws Exception {} + + @Override + public void oauth2AuthToken(String jsonKey, InputStream credentialsStream, String authScope) + throws Exception {} + + @Override + public void perRpcCreds(String jsonKey, InputStream credentialsStream, String oauthScope) + throws Exception {} + @Override public void customMetadata() throws Exception { tester.customMetadata();