summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-04-10 19:04:05 +0200
committerKjetil Ørbekk <kjetil.orbekk@gmail.com>2012-04-10 19:04:05 +0200
commite2bcbb117f2ac03196da34217671f1bc48395598 (patch)
tree990f92f4271d3929fa4fcc12305c4a3fd3d58111 /src/test
parentbb4dc8012467d47ed21a8fa1cf11fca27a1fafd7 (diff)
Change in buffering.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java b/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java
index b3875e3..a7249a1 100644
--- a/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java
+++ b/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java
@@ -73,15 +73,11 @@ public class ProtobufFunctionalTest {
}
}
- @org.junit.Test public void testConnectionRefused() throws Exception {
- }
-
- @Ignore
@org.junit.Test public void testNewRpcChannel() throws Exception {
NewRpcChannel channel = NewRpcChannel.create("localhost", serverport);
Test.Service service = Test.Service.newStub(channel);
Test.Type1 request = Test.Type1.newBuilder().build();
- int count = 5000000;
+ int count = 10000;
final Rpc rpc = new Rpc();
final CountDownLatch stop = new CountDownLatch(count);
long startTime = System.currentTimeMillis();