Verbose log of start of each test suite

pull/13571/head
Muxi Yan 7 years ago
parent 17a1431a37
commit 4b947d3b16
  1. 4
      src/objective-c/tests/GRPCClientTests.m
  2. 1
      src/objective-c/tests/InteropTests.m
  3. 4
      src/objective-c/tests/RxLibraryUnitTests.m

@ -95,6 +95,10 @@ static GRPCProtoMethod *kFullDuplexCallMethod;
@implementation GRPCClientTests
+ (void)setUp {
NSLog(@"GRPCClientTests Started");
}
- (void)setUp {
// Add a custom user agent prefix that will be used in test
[GRPCCall setUserAgentPrefix:@"Foo" forHost:kHostAddress];

@ -86,6 +86,7 @@
}
+ (void)setUp {
NSLog(@"InteropTest Started, class: %@", [[self class] description]);
#ifdef GRPC_COMPILE_WITH_CRONET
// Cronet setup
[Cronet setHttp2Enabled:YES];

@ -58,6 +58,10 @@
@implementation RxLibraryUnitTests
+ (void)setUp {
NSLog(@"GRPCClientTests Started");
}
#pragma mark Writeable
- (void)testWriteableSingleHandlerIsCalledForValue {

Loading…
Cancel
Save