├── .gitignore ├── .travis.yml ├── Example ├── Playgrounds │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-0.txt │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-1.txt │ └── Mocks.plist ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SuperMock.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SuperMock_Example │ │ ├── Pods-SuperMock_Example-Info.plist │ │ ├── Pods-SuperMock_Example-acknowledgements.markdown │ │ ├── Pods-SuperMock_Example-acknowledgements.plist │ │ ├── Pods-SuperMock_Example-dummy.m │ │ ├── Pods-SuperMock_Example-frameworks.sh │ │ ├── Pods-SuperMock_Example-umbrella.h │ │ ├── Pods-SuperMock_Example.debug.xcconfig │ │ ├── Pods-SuperMock_Example.modulemap │ │ └── Pods-SuperMock_Example.release.xcconfig │ │ ├── Pods-SuperMock_Tests │ │ ├── Pods-SuperMock_Tests-Info.plist │ │ ├── Pods-SuperMock_Tests-acknowledgements.markdown │ │ ├── Pods-SuperMock_Tests-acknowledgements.plist │ │ ├── Pods-SuperMock_Tests-dummy.m │ │ ├── Pods-SuperMock_Tests-frameworks.sh │ │ ├── Pods-SuperMock_Tests-umbrella.h │ │ ├── Pods-SuperMock_Tests.debug.xcconfig │ │ ├── Pods-SuperMock_Tests.modulemap │ │ └── Pods-SuperMock_Tests.release.xcconfig │ │ └── SuperMock │ │ ├── SuperMock-Info.plist │ │ ├── SuperMock-dummy.m │ │ ├── SuperMock-prefix.pch │ │ ├── SuperMock-umbrella.h │ │ ├── SuperMock.modulemap │ │ └── SuperMock.xcconfig ├── SuperMock.playground │ ├── Pages │ │ ├── Main.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── PlayingNetworkData.xcplaygroundpage │ │ │ └── Contents.swift │ │ └── RecordingNetworkData.xcplaygroundpage │ │ │ └── Contents.swift │ ├── Resources │ │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-0.txt │ │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-1.txt │ │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-2.txt │ │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-3.txt │ │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-4.txt │ │ ├── %22http%3A%2F%2Fapple.com%2Fuk%22-5.txt │ │ └── Mocks.plist │ ├── Sources │ │ └── Comon.swift │ └── contents.xcplayground ├── SuperMock.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── SuperMock-Example.xcscheme ├── SuperMock.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── SuperMock │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Mocks.plist │ ├── MocksRecorded.plist │ ├── ViewController.swift │ ├── __mike.kz_.headers │ ├── buttons.txt │ ├── http%3A%2F%2Fapple.com%2F.txt │ ├── http%3A%2F%2Fapple.com%2F2FDATA.txt │ ├── sample.html │ └── samplePOST.html ├── SuperMock_ExampleUITests │ ├── Info.plist │ └── SuperMock_ExampleUITests.swift └── Tests │ ├── Info.plist │ ├── SuperMockNSURLRequestExtensionTests.swift │ ├── SuperMockNSURLSessionConfigurationExtensionTests.swift │ ├── SuperMockResponseHelperTests.swift │ ├── SuperMockTests.swift │ ├── SuperMockURLProtocolTests.swift │ └── Tests.swift ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── SuperMock.swift │ ├── SuperMockNSURLRequestExtension.swift │ ├── SuperMockNSURLSessionConfigurationExtension.swift │ ├── SuperMockResponseHelper.swift │ └── SuperMockURLProtocol.swift ├── README.md ├── SuperMock.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Playgrounds/%22http%3A%2F%2Fapple.com%2Fuk%22-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Playgrounds/%22http%3A%2F%2Fapple.com%2Fuk%22-0.txt -------------------------------------------------------------------------------- /Example/Playgrounds/%22http%3A%2F%2Fapple.com%2Fuk%22-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Playgrounds/%22http%3A%2F%2Fapple.com%2Fuk%22-1.txt -------------------------------------------------------------------------------- /Example/Playgrounds/Mocks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Playgrounds/Mocks.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SuperMock.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Local Podspecs/SuperMock.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Example/Pods-SuperMock_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/Pods-SuperMock_Tests/Pods-SuperMock_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SuperMock/SuperMock-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/SuperMock/SuperMock-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SuperMock/SuperMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/SuperMock/SuperMock-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SuperMock/SuperMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/SuperMock/SuperMock-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SuperMock/SuperMock-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/SuperMock/SuperMock-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SuperMock/SuperMock.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/SuperMock/SuperMock.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SuperMock/SuperMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Pods/Target Support Files/SuperMock/SuperMock.xcconfig -------------------------------------------------------------------------------- /Example/SuperMock.playground/Pages/Main.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Pages/Main.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/SuperMock.playground/Pages/PlayingNetworkData.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Pages/PlayingNetworkData.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/SuperMock.playground/Pages/RecordingNetworkData.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Pages/RecordingNetworkData.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-0.txt -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-1.txt -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-2.txt -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-3.txt -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-4.txt -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/%22http%3A%2F%2Fapple.com%2Fuk%22-5.txt -------------------------------------------------------------------------------- /Example/SuperMock.playground/Resources/Mocks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Resources/Mocks.plist -------------------------------------------------------------------------------- /Example/SuperMock.playground/Sources/Comon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/Sources/Comon.swift -------------------------------------------------------------------------------- /Example/SuperMock.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.playground/contents.xcplayground -------------------------------------------------------------------------------- /Example/SuperMock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SuperMock.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SuperMock.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SuperMock.xcodeproj/xcshareddata/xcschemes/SuperMock-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcodeproj/xcshareddata/xcschemes/SuperMock-Example.xcscheme -------------------------------------------------------------------------------- /Example/SuperMock.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SuperMock.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SuperMock.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/SuperMock/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SuperMock/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SuperMock/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SuperMock/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SuperMock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/Info.plist -------------------------------------------------------------------------------- /Example/SuperMock/Mocks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/Mocks.plist -------------------------------------------------------------------------------- /Example/SuperMock/MocksRecorded.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/MocksRecorded.plist -------------------------------------------------------------------------------- /Example/SuperMock/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/ViewController.swift -------------------------------------------------------------------------------- /Example/SuperMock/__mike.kz_.headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/__mike.kz_.headers -------------------------------------------------------------------------------- /Example/SuperMock/buttons.txt: -------------------------------------------------------------------------------- 1 | MOCKTITLE1 -------------------------------------------------------------------------------- /Example/SuperMock/http%3A%2F%2Fapple.com%2F.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/http%3A%2F%2Fapple.com%2F.txt -------------------------------------------------------------------------------- /Example/SuperMock/http%3A%2F%2Fapple.com%2F2FDATA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/http%3A%2F%2Fapple.com%2F2FDATA.txt -------------------------------------------------------------------------------- /Example/SuperMock/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/sample.html -------------------------------------------------------------------------------- /Example/SuperMock/samplePOST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock/samplePOST.html -------------------------------------------------------------------------------- /Example/SuperMock_ExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock_ExampleUITests/Info.plist -------------------------------------------------------------------------------- /Example/SuperMock_ExampleUITests/SuperMock_ExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/SuperMock_ExampleUITests/SuperMock_ExampleUITests.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/SuperMockNSURLRequestExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/SuperMockNSURLRequestExtensionTests.swift -------------------------------------------------------------------------------- /Example/Tests/SuperMockNSURLSessionConfigurationExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/SuperMockNSURLSessionConfigurationExtensionTests.swift -------------------------------------------------------------------------------- /Example/Tests/SuperMockResponseHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/SuperMockResponseHelperTests.swift -------------------------------------------------------------------------------- /Example/Tests/SuperMockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/SuperMockTests.swift -------------------------------------------------------------------------------- /Example/Tests/SuperMockURLProtocolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/SuperMockURLProtocolTests.swift -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/SuperMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Pod/Classes/SuperMock.swift -------------------------------------------------------------------------------- /Pod/Classes/SuperMockNSURLRequestExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Pod/Classes/SuperMockNSURLRequestExtension.swift -------------------------------------------------------------------------------- /Pod/Classes/SuperMockNSURLSessionConfigurationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Pod/Classes/SuperMockNSURLSessionConfigurationExtension.swift -------------------------------------------------------------------------------- /Pod/Classes/SuperMockResponseHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Pod/Classes/SuperMockResponseHelper.swift -------------------------------------------------------------------------------- /Pod/Classes/SuperMockURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/Pod/Classes/SuperMockURLProtocol.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/README.md -------------------------------------------------------------------------------- /SuperMock.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelarmstrong/SuperMock/HEAD/SuperMock.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------