Skip to content

Commit

Permalink
Update GrpcJavaClientTester.java
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Sep 22, 2024
1 parent c7c4c87 commit d2890b2
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -42,6 +43,9 @@ public void emptyUnary() throws Exception {
tester.emptyUnary();
}

@Override
public void cacheableUnary() {}

@Override
public void largeUnary() throws Exception {
tester.largeUnary();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit d2890b2

Please sign in to comment.