├── .gitignore ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── NWPusher │ ├── Classes │ │ ├── NWHub.h │ │ ├── NWHub.m │ │ ├── NWNotification.h │ │ ├── NWNotification.m │ │ ├── NWPushFeedback.h │ │ ├── NWPushFeedback.m │ │ ├── NWPusher.h │ │ ├── NWPusher.m │ │ ├── NWSSLConnection.h │ │ ├── NWSSLConnection.m │ │ ├── NWSecTools.h │ │ ├── NWSecTools.m │ │ ├── NWType.h │ │ └── NWType.m │ ├── LICENSE.txt │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Swifter │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── DemoServer.swift │ │ ├── Errno.swift │ │ ├── Files.swift │ │ ├── HttpParser.swift │ │ ├── HttpRequest.swift │ │ ├── HttpResponse.swift │ │ ├── HttpRouter.swift │ │ ├── HttpServer.swift │ │ ├── HttpServerIO.swift │ │ ├── MimeTypes.swift │ │ ├── Process.swift │ │ ├── Scopes.swift │ │ ├── Socket+File.swift │ │ ├── Socket+Server.swift │ │ ├── Socket.swift │ │ ├── String+BASE64.swift │ │ ├── String+File.swift │ │ ├── String+Misc.swift │ │ ├── String+SHA1.swift │ │ └── WebSockets.swift └── Target Support Files │ ├── NWPusher │ ├── Info.plist │ ├── NWPusher-dummy.m │ ├── NWPusher-prefix.pch │ ├── NWPusher-umbrella.h │ ├── NWPusher.modulemap │ └── NWPusher.xcconfig │ ├── Pods-PushNotificationUITesting │ ├── Info.plist │ ├── Pods-PushNotificationUITesting-acknowledgements.markdown │ ├── Pods-PushNotificationUITesting-acknowledgements.plist │ ├── Pods-PushNotificationUITesting-dummy.m │ ├── Pods-PushNotificationUITesting-frameworks.sh │ ├── Pods-PushNotificationUITesting-resources.sh │ ├── Pods-PushNotificationUITesting-umbrella.h │ ├── Pods-PushNotificationUITesting.debug.xcconfig │ ├── Pods-PushNotificationUITesting.modulemap │ └── Pods-PushNotificationUITesting.release.xcconfig │ ├── Pods-PushNotificationUITestingUITests │ ├── Info.plist │ ├── Pods-PushNotificationUITestingUITests-acknowledgements.markdown │ ├── Pods-PushNotificationUITestingUITests-acknowledgements.plist │ ├── Pods-PushNotificationUITestingUITests-dummy.m │ ├── Pods-PushNotificationUITestingUITests-frameworks.sh │ ├── Pods-PushNotificationUITestingUITests-resources.sh │ ├── Pods-PushNotificationUITestingUITests-umbrella.h │ ├── Pods-PushNotificationUITestingUITests.debug.xcconfig │ ├── Pods-PushNotificationUITestingUITests.modulemap │ └── Pods-PushNotificationUITestingUITests.release.xcconfig │ └── Swifter │ ├── Info.plist │ ├── Swifter-dummy.m │ ├── Swifter-prefix.pch │ ├── Swifter-umbrella.h │ ├── Swifter.modulemap │ └── Swifter.xcconfig ├── PushNotificationUITesting.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── matt.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── PushNotificationUITesting.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── PushNotificationUITesting ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── PushNotificationUITesting.entitlements ├── PushNotificationUITesting.xcdatamodeld │ ├── .xccurrentversion │ └── PushNotificationUITesting.xcdatamodel │ │ └── contents └── ViewController.swift ├── PushNotificationUITestingUITests ├── Info.plist ├── MockServer.swift ├── PushNotificationPayload.swift ├── PushUITests.swift ├── UITestingConstants.swift └── pushtesting_sandbox.p12 └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWHub.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWHub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWHub.m -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWNotification.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWNotification.m -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWPushFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWPushFeedback.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWPushFeedback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWPushFeedback.m -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWPusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWPusher.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWPusher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWPusher.m -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWSSLConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWSSLConnection.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWSSLConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWSSLConnection.m -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWSecTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWSecTools.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWSecTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWSecTools.m -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWType.h -------------------------------------------------------------------------------- /Pods/NWPusher/Classes/NWType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/Classes/NWType.m -------------------------------------------------------------------------------- /Pods/NWPusher/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/LICENSE.txt -------------------------------------------------------------------------------- /Pods/NWPusher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/NWPusher/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Swifter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/LICENSE -------------------------------------------------------------------------------- /Pods/Swifter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/README.md -------------------------------------------------------------------------------- /Pods/Swifter/Sources/DemoServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/DemoServer.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Errno.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Errno.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Files.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/HttpParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/HttpParser.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/HttpRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/HttpRequest.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/HttpResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/HttpResponse.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/HttpRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/HttpRouter.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/HttpServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/HttpServer.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/HttpServerIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/HttpServerIO.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/MimeTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/MimeTypes.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Process.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Scopes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Scopes.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Socket+File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Socket+File.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Socket+Server.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Socket+Server.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/Socket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/Socket.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/String+BASE64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/String+BASE64.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/String+File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/String+File.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/String+Misc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/String+Misc.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/String+SHA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/String+SHA1.swift -------------------------------------------------------------------------------- /Pods/Swifter/Sources/WebSockets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Swifter/Sources/WebSockets.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/NWPusher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/NWPusher/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/NWPusher/NWPusher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/NWPusher/NWPusher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/NWPusher/NWPusher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/NWPusher/NWPusher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/NWPusher/NWPusher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/NWPusher/NWPusher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/NWPusher/NWPusher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/NWPusher/NWPusher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/NWPusher/NWPusher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/NWPusher/NWPusher.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITesting/Pods-PushNotificationUITesting.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Pods-PushNotificationUITestingUITests/Pods-PushNotificationUITestingUITests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Swifter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Swifter/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Swifter/Swifter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Swifter/Swifter-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Swifter/Swifter-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Swifter/Swifter-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Swifter/Swifter-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Swifter/Swifter-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Swifter/Swifter.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Swifter/Swifter.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Swifter/Swifter.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/Pods/Target Support Files/Swifter/Swifter.xcconfig -------------------------------------------------------------------------------- /PushNotificationUITesting.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PushNotificationUITesting.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PushNotificationUITesting.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PushNotificationUITesting.xcodeproj/xcuserdata/matt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting.xcodeproj/xcuserdata/matt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PushNotificationUITesting.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PushNotificationUITesting.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PushNotificationUITesting/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/AppDelegate.swift -------------------------------------------------------------------------------- /PushNotificationUITesting/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PushNotificationUITesting/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PushNotificationUITesting/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PushNotificationUITesting/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PushNotificationUITesting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/Info.plist -------------------------------------------------------------------------------- /PushNotificationUITesting/PushNotificationUITesting.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/PushNotificationUITesting.entitlements -------------------------------------------------------------------------------- /PushNotificationUITesting/PushNotificationUITesting.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/PushNotificationUITesting.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /PushNotificationUITesting/PushNotificationUITesting.xcdatamodeld/PushNotificationUITesting.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/PushNotificationUITesting.xcdatamodeld/PushNotificationUITesting.xcdatamodel/contents -------------------------------------------------------------------------------- /PushNotificationUITesting/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITesting/ViewController.swift -------------------------------------------------------------------------------- /PushNotificationUITestingUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITestingUITests/Info.plist -------------------------------------------------------------------------------- /PushNotificationUITestingUITests/MockServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITestingUITests/MockServer.swift -------------------------------------------------------------------------------- /PushNotificationUITestingUITests/PushNotificationPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITestingUITests/PushNotificationPayload.swift -------------------------------------------------------------------------------- /PushNotificationUITestingUITests/PushUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITestingUITests/PushUITests.swift -------------------------------------------------------------------------------- /PushNotificationUITestingUITests/UITestingConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITestingUITests/UITestingConstants.swift -------------------------------------------------------------------------------- /PushNotificationUITestingUITests/pushtesting_sandbox.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/PushNotificationUITestingUITests/pushtesting_sandbox.p12 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattstanford/PushNotificationUITesting/HEAD/README.md --------------------------------------------------------------------------------