Commit | Line | Data |
---|---|---|
79b9da22 A |
1 | // |
2 | // MultiDeviceNetworking.h | |
3 | // Security | |
4 | // | |
5 | ||
6 | #import <Foundation/Foundation.h> | |
7 | #import <XCTest/XCTest.h> | |
8 | ||
9 | @interface MDNCounters : NSObject | |
10 | //- (NSDictionary *)summary; | |
11 | @end | |
12 | ||
13 | @interface MultiDeviceNetworking : NSObject | |
14 | - (instancetype)init; | |
15 | - (NSXPCListenerEndpoint *)endpoint; | |
16 | - (void)dumpKVSState; | |
17 | - (void)dumpCounters; | |
18 | - (void)disconnectAll; | |
19 | ||
20 | - (void)setTestExpectation:(XCTestExpectation *)expectation forKey:(NSString *)key; | |
21 | - (void)fulfill:(NSString *)key; | |
22 | - (void)clearTestExpectations; | |
23 | ||
24 | @end |