|
69 | 69 | import io.grpc.Channel; |
70 | 70 | import io.grpc.ChannelCredentials; |
71 | 71 | import io.grpc.ChannelLogger; |
72 | | -import io.grpc.ChildChannelConfigurer; |
73 | 72 | import io.grpc.ClientCall; |
74 | 73 | import io.grpc.ClientInterceptor; |
75 | 74 | import io.grpc.ClientInterceptors; |
|
102 | 101 | import io.grpc.LoadBalancerRegistry; |
103 | 102 | import io.grpc.LongCounterMetricInstrument; |
104 | 103 | import io.grpc.ManagedChannel; |
105 | | -import io.grpc.ManagedChannelBuilder; |
106 | 104 | import io.grpc.Metadata; |
107 | 105 | import io.grpc.MethodDescriptor; |
108 | 106 | import io.grpc.MethodDescriptor.MethodType; |
@@ -306,8 +304,6 @@ public String getPolicyName() { |
306 | 304 | private ArgumentCaptor<ResolvedAddresses> resolvedAddressCaptor; |
307 | 305 | private ArgumentCaptor<ClientStreamListener> streamListenerCaptor = |
308 | 306 | ArgumentCaptor.forClass(ClientStreamListener.class); |
309 | | - @Mock |
310 | | - private ChildChannelConfigurer mockChildChannelConfigurer; |
311 | 307 |
|
312 | 308 |
|
313 | 309 | private void createChannel(ClientInterceptor... interceptors) { |
@@ -3775,6 +3771,7 @@ public void channelsAndSubchannels_oob_instrumented_state() throws Exception { |
3775 | 3771 | assertEquals(SHUTDOWN, getStats(channel).state); |
3776 | 3772 | assertEquals(SHUTDOWN, getStats(oobChannel).state); |
3777 | 3773 | } |
| 3774 | + |
3778 | 3775 | @Test |
3779 | 3776 | public void binaryLogInstalled() throws Exception { |
3780 | 3777 | final SettableFuture<Boolean> intercepted = SettableFuture.create(); |
|
0 commit comments