Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private static List<Statement> createClassMemberFieldDecls(
ExprStatement.withExpr(
v.toBuilder()
.setIsDecl(true)
.setScope(ScopeNode.PUBLIC)
.setScope(ScopeNode.PRIVATE)
.setIsStatic(v.type().reference().name().startsWith("Mock"))
.build()))
.collect(Collectors.toList());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ import org.junit.Test;

@Generated("by gapic-generator-java")
public class EchoClientTest {
public static MockServiceHelper mockServiceHelper;
public static MockEcho mockEcho;
public EchoClient client;
public LocalChannelProvider channelProvider;
private static MockServiceHelper mockServiceHelper;
private static MockEcho mockEcho;
private EchoClient client;
private LocalChannelProvider channelProvider;

@BeforeClass
public static void startStaticServer() {
Expand Down