/psychic-octo-guacamole

Simple web socket mock server

Primary LanguageObjective-C

psychic-octo-guacamole

Simple web socket mock server

Server init and start:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [FakeServer sharedInstance].delegate = [FakeServerDelegate new];
    [[FakeServer sharedInstance] start];
    ...
}

Record message:

- (void)webSocket:(SRWebSocket *)webSocket didReceiveMessage:(id)message {
    ...
    [FakeServer recordMessage:message forMethod:method];
    ...
}