Skip to content
Snippets Groups Projects
Commit 32fde7af authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Better names for the methods to clear all host settings

parent 4bb2eb22
No related branches found
No related tags found
No related merge requests found
...@@ -62,5 +62,5 @@ ...@@ -62,5 +62,5 @@
* Resets all host configurations to their default values, and flushes all connections from the * Resets all host configurations to their default values, and flushes all connections from the
* cache. * cache.
*/ */
+ (void)clearAllConfigurationsForTesting; + (void)resetHostSettings;
@end @end
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
hostConfig.secure = NO; hostConfig.secure = NO;
} }
+ (void)clearAllConfigurationsForTesting { + (void)resetHostSettings {
[GRPCHost clearAllHostsForTesting]; [GRPCHost resetAllHostSettings];
} }
@end @end
...@@ -42,7 +42,7 @@ struct grpc_channel_credentials; ...@@ -42,7 +42,7 @@ struct grpc_channel_credentials;
@interface GRPCHost : NSObject @interface GRPCHost : NSObject
+ (void)flushChannelCache; + (void)flushChannelCache;
+ (void)clearAllHostsForTesting; + (void)resetAllHostSettings;
@property(nonatomic, readonly) NSString *address; @property(nonatomic, readonly) NSString *address;
@property(nonatomic, copy, nullable) NSString *userAgentPrefix; @property(nonatomic, copy, nullable) NSString *userAgentPrefix;
......
...@@ -113,7 +113,7 @@ static NSMutableDictionary *kHostCache; ...@@ -113,7 +113,7 @@ static NSMutableDictionary *kHostCache;
} }
} }
+ (void)clearAllHostsForTesting { + (void)resetAllHostSettings {
@synchronized (kHostCache) { @synchronized (kHostCache) {
kHostCache = [NSMutableDictionary dictionary]; kHostCache = [NSMutableDictionary dictionary];
} }
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
- (void)setUp { - (void)setUp {
self.continueAfterFailure = NO; self.continueAfterFailure = NO;
[GRPCCall clearAllConfigurationsForTesting]; [GRPCCall resetHostSettings];
_service = self.class.host ? [RMTTestService serviceWithHost:self.class.host] : nil; _service = self.class.host ? [RMTTestService serviceWithHost:self.class.host] : nil;
#ifdef GRPC_COMPILE_WITH_CRONET #ifdef GRPC_COMPILE_WITH_CRONET
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment