├── .gitignore ├── Example.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Example.xcscheme ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── MainViewController.swift ├── OnboardingViewController.swift └── UserDefaults+Onboarding.swift ├── ExampleUITests ├── Info.plist ├── OnboardingUITests.swift └── XCUIApplication+Onboarding.swift ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/MainViewController.swift -------------------------------------------------------------------------------- /Example/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/OnboardingViewController.swift -------------------------------------------------------------------------------- /Example/UserDefaults+Onboarding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/Example/UserDefaults+Onboarding.swift -------------------------------------------------------------------------------- /ExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/ExampleUITests/Info.plist -------------------------------------------------------------------------------- /ExampleUITests/OnboardingUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/ExampleUITests/OnboardingUITests.swift -------------------------------------------------------------------------------- /ExampleUITests/XCUIApplication+Onboarding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/ExampleUITests/XCUIApplication+Onboarding.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/UITestingExample/HEAD/README.md --------------------------------------------------------------------------------