aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/InteropTests.h
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-10-28 14:53:38 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-10-28 14:53:38 -0700
commit91db5acd5b52a41d7069fd56bf0f6802b6c6e4b7 (patch)
tree69c29301179b48a106afe8bb18d871c22f004a4e /src/objective-c/tests/InteropTests.h
parent54fa62e3db569d6a06e1cd0042619eb3ba81ef41 (diff)
Split AllTests into 4 schemes
For local running one can still tests AllTests, but for C.I. one can test the 4 of them in parallel (and, importantly, deactivate the remote interop tests until we fix them on Travis; while keeping the rest). I had to make the remote tests a subclass of an abstract InteropTests (like InteropTestsLocalSSL and InteropTestsLocalCleartext), and then deactivate the abstract InteropTests on the 4 schemes that use it.
Diffstat (limited to 'src/objective-c/tests/InteropTests.h')
-rw-r--r--src/objective-c/tests/InteropTests.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objective-c/tests/InteropTests.h b/src/objective-c/tests/InteropTests.h
index 1045c3d124..383e3befb4 100644
--- a/src/objective-c/tests/InteropTests.h
+++ b/src/objective-c/tests/InteropTests.h
@@ -37,7 +37,7 @@
// https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md
@interface InteropTests : XCTestCase
-// Returns @"grpc-test.sandbox.google.com".
-// Override in a subclass to perform the same tests against a different address.
+// Returns nil, and as a consequence all tests of the superclass are skipped.
+// Override in a subclass to perform these tests against a specific address.
+ (NSString *)host;
@end