aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorJoey Bratton <joey@joeyb.org>2016-12-06 12:32:04 -0500
committerEric Anderson <ejona@google.com>2016-12-06 09:32:04 -0800
commitb6ebede94fc29f14ca862d90a3f5a0f1cfe5f011 (patch)
tree77d7fc02ef14cc388ddba73773fca42971de5d40 /settings.gradle
parenta10261af482f0373778dd9cad5241a584bd08208 (diff)
downloadgrpc-grpc-java-b6ebede94fc29f14ca862d90a3f5a0f1cfe5f011.tar.gz
testing: added junit rule for in-process servers
GrpcServerRule configures an in-process server and channel. It is useful for asserting requests being made to a service. A consumer can create a mock implementation of their service that records each request, then make assertions on those records in their test.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
index d9ea44062..ba0e64090 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -10,6 +10,7 @@ include ":grpc-protobuf-nano"
include ":grpc-netty"
include ":grpc-grpclb"
include ":grpc-testing"
+include ":grpc-testing-proto"
include ":grpc-interop-testing"
include ":grpc-all"
include ":grpc-benchmarks"
@@ -27,6 +28,7 @@ project(':grpc-protobuf-nano').projectDir = "$rootDir/protobuf-nano" as File
project(':grpc-netty').projectDir = "$rootDir/netty" as File
project(':grpc-grpclb').projectDir = "$rootDir/grpclb" as File
project(':grpc-testing').projectDir = "$rootDir/testing" as File
+project(':grpc-testing-proto').projectDir = "$rootDir/testing-proto" as File
project(':grpc-interop-testing').projectDir = "$rootDir/interop-testing" as File
project(':grpc-all').projectDir = "$rootDir/all" as File
project(':grpc-benchmarks').projectDir = "$rootDir/benchmarks" as File