Skip to content

Instantly share code, notes, and snippets.

View kaiinui's full-sized avatar

kaiinui kaiinui

View GitHub Profile
@kaiinui
kaiinui / FLMHTTPStub.h
Last active February 10, 2016 03:07
ObjC便利HTTPスタブクラス
#import <Foundation/Foundation.h>
@interface FLMHTTPStub : NSObject
+ (void)stubURLContains:(nonnull NSString *)aStr withJSON:(nonnull NSDictionary *)json;
+ (void)stubURLContains:(nonnull NSString *)aStr withHttpStatusCode:(int)code withJSON:(nullable NSDictionary *)json;
@end