Skip to content

Commit

Permalink
Delete test case because of the test case will use network to call th…
Browse files Browse the repository at this point in the history
…e collector.
  • Loading branch information
peng-yongsheng committed Aug 1, 2017
1 parent 8c27542 commit 667c0f4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Expand Up @@ -2,7 +2,6 @@

import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import org.junit.Test;
import org.skywalking.apm.network.proto.Application;
import org.skywalking.apm.network.proto.ApplicationMapping;
import org.skywalking.apm.network.proto.ApplicationRegisterServiceGrpc;
Expand All @@ -14,7 +13,6 @@ public class ApplicationRegisterServiceHandlerTestCase {

private ApplicationRegisterServiceGrpc.ApplicationRegisterServiceBlockingStub stub;

@Test
public void testRegister() {
ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", 11800).usePlaintext(true).build();
stub = ApplicationRegisterServiceGrpc.newBlockingStub(channel);
Expand Down
Expand Up @@ -3,7 +3,6 @@
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import io.grpc.stub.StreamObserver;
import org.junit.Test;
import org.skywalking.apm.network.proto.Downstream;
import org.skywalking.apm.network.proto.KeyWithStringValue;
import org.skywalking.apm.network.proto.LogMessage;
Expand All @@ -28,7 +27,6 @@ public class TraceSegmentServiceHandlerTestCase {

private TraceSegmentServiceGrpc.TraceSegmentServiceStub stub;

@Test
public void testCollect() {
ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", 11800).usePlaintext(true).build();
stub = TraceSegmentServiceGrpc.newStub(channel);
Expand Down

0 comments on commit 667c0f4

Please sign in to comment.