├── Categories ├── NSString+mock.h ├── NSString+mock.m ├── NSURLRequest+GYURLRequestProtocol.h └── NSURLRequest+GYURLRequestProtocol.m ├── GYHttpMock.h ├── GYHttpMock.m ├── GYHttpMock.podspec ├── GYMatcher.h ├── GYMatcher.m ├── GYMockURLProtocol.h ├── GYMockURLProtocol.m ├── Hooks ├── GYHttpClientHook.h ├── GYHttpClientHook.m ├── GYNSURLConnectionHook.h ├── GYNSURLConnectionHook.m ├── GYNSURLSessionHook.h └── GYNSURLSessionHook.m ├── LICENSE ├── README.md ├── Request ├── GYMockRequest.h ├── GYMockRequest.m ├── GYMockRequestDSL.h └── GYMockRequestDSL.m └── Response ├── GYMockResponse.h ├── GYMockResponse.m ├── GYMockResponseDSL.h └── GYMockResponseDSL.m /Categories/NSString+mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Categories/NSString+mock.h -------------------------------------------------------------------------------- /Categories/NSString+mock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Categories/NSString+mock.m -------------------------------------------------------------------------------- /Categories/NSURLRequest+GYURLRequestProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Categories/NSURLRequest+GYURLRequestProtocol.h -------------------------------------------------------------------------------- /Categories/NSURLRequest+GYURLRequestProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Categories/NSURLRequest+GYURLRequestProtocol.m -------------------------------------------------------------------------------- /GYHttpMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYHttpMock.h -------------------------------------------------------------------------------- /GYHttpMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYHttpMock.m -------------------------------------------------------------------------------- /GYHttpMock.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYHttpMock.podspec -------------------------------------------------------------------------------- /GYMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYMatcher.h -------------------------------------------------------------------------------- /GYMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYMatcher.m -------------------------------------------------------------------------------- /GYMockURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYMockURLProtocol.h -------------------------------------------------------------------------------- /GYMockURLProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/GYMockURLProtocol.m -------------------------------------------------------------------------------- /Hooks/GYHttpClientHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Hooks/GYHttpClientHook.h -------------------------------------------------------------------------------- /Hooks/GYHttpClientHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Hooks/GYHttpClientHook.m -------------------------------------------------------------------------------- /Hooks/GYNSURLConnectionHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Hooks/GYNSURLConnectionHook.h -------------------------------------------------------------------------------- /Hooks/GYNSURLConnectionHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Hooks/GYNSURLConnectionHook.m -------------------------------------------------------------------------------- /Hooks/GYNSURLSessionHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Hooks/GYNSURLSessionHook.h -------------------------------------------------------------------------------- /Hooks/GYNSURLSessionHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Hooks/GYNSURLSessionHook.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/README.md -------------------------------------------------------------------------------- /Request/GYMockRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Request/GYMockRequest.h -------------------------------------------------------------------------------- /Request/GYMockRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Request/GYMockRequest.m -------------------------------------------------------------------------------- /Request/GYMockRequestDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Request/GYMockRequestDSL.h -------------------------------------------------------------------------------- /Request/GYMockRequestDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Request/GYMockRequestDSL.m -------------------------------------------------------------------------------- /Response/GYMockResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Response/GYMockResponse.h -------------------------------------------------------------------------------- /Response/GYMockResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Response/GYMockResponse.m -------------------------------------------------------------------------------- /Response/GYMockResponseDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Response/GYMockResponseDSL.h -------------------------------------------------------------------------------- /Response/GYMockResponseDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypoyao/GYHttpMock/HEAD/Response/GYMockResponseDSL.m --------------------------------------------------------------------------------