├── .bazelrc ├── .bazelversion ├── .clang-format ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── BUILD.bazel ├── CHANGELOG.md ├── FBSnapshotTestCase.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── FBSnapshotTestCase iOS.xcscheme │ └── FBSnapshotTestCase tvOS.xcscheme ├── FBSnapshotTestCase.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── LICENSE ├── Package.swift ├── README.md ├── SnapshotTest.xctemplate ├── TemplateInfo.plist └── ___FILEBASENAME___.m ├── WORKSPACE ├── bin └── clang-format ├── demos ├── FBSnapshotTestCaseDemo │ ├── FBSnapshotTestCaseDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── FBSnapshotTestCaseDemo.xcscheme │ │ │ └── FBSnapshotTestCasePreprocessorDemo.xcscheme │ ├── FBSnapshotTestCaseDemo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── FBSnapshotTestCaseDemo │ │ ├── FBAppDelegate.h │ │ ├── FBAppDelegate.m │ │ ├── FBSnapshotTestCaseDemo-Info.plist │ │ ├── FBSnapshotTestCaseDemo-Prefix.pch │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Launch Screen.storyboard │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── FBSnapshotTestCaseDemoTests │ │ ├── FBSnapshotTestCaseDemoTests-Info.plist │ │ ├── FBSnapshotTestCaseDemoTests.m │ │ ├── FBSnapshotTestCaseSwiftTests.swift │ │ ├── ReferenceImages_32 │ │ │ ├── FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest │ │ │ │ └── testExample@2x.png │ │ │ └── FBSnapshotTestCaseDemoTests │ │ │ │ ├── testViewSnapshot@2x.png │ │ │ │ ├── testViewSnapshotWithDifferentBackgroundColorPerArchitecture@2x.png │ │ │ │ ├── testViewSnapshotWithUIAppearance@2x.png │ │ │ │ ├── testViewSnapshotWithUIAppearanceResizing@2x.png │ │ │ │ └── testViewSnapshotWithVisualEffects@2x.png │ │ ├── ReferenceImages_64 │ │ │ ├── FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest │ │ │ │ ├── testExample@2x.png │ │ │ │ └── testExample@3x.png │ │ │ └── FBSnapshotTestCaseDemoTests │ │ │ │ ├── testViewSnapshot@2x.png │ │ │ │ ├── testViewSnapshot@3x.png │ │ │ │ ├── testViewSnapshotWithDifferentBackgroundColorPerArchitecture@2x.png │ │ │ │ ├── testViewSnapshotWithDifferentBackgroundColorPerArchitecture@3x.png │ │ │ │ ├── testViewSnapshotWithUIAppearance@2x.png │ │ │ │ ├── testViewSnapshotWithUIAppearance@3x.png │ │ │ │ ├── testViewSnapshotWithUIAppearanceResizing@2x.png │ │ │ │ ├── testViewSnapshotWithUIAppearanceResizing@3x.png │ │ │ │ ├── testViewSnapshotWithVisualEffects@2x.png │ │ │ │ └── testViewSnapshotWithVisualEffects@3x.png │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── Podfile │ ├── Podfile.lock │ └── Scheme_FB_REFERENCE_IMAGE_DIR.png ├── iOSSnapshotTestCaseCarthageDemo │ ├── Cartfile │ ├── Cartfile.resolved │ ├── iOSSnapshotTestCaseCarthageDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── iOSSnapshotTestCaseCarthageDemo.xcscheme │ ├── iOSSnapshotTestCaseCarthageDemo │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ └── iOSSnapshotTestCaseCarthageDemoSwiftTests │ │ ├── Info.plist │ │ ├── ReferenceImages_64 │ │ └── iOSSnapshotTestCaseCarthageDemoSwiftTests.iOSSnapshotTestCaseCarthageDemoSwiftTests │ │ │ ├── testExample@2x.png │ │ │ └── testExample@3x.png │ │ └── iOSSnapshotTestCaseCarthageDemoSwiftTests.swift └── iOSSnapshotTestCaseSwiftPMDemo │ ├── Shared │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ └── iOSSnapshotTestCaseSwiftPMDemoApp.swift │ ├── Tests iOS │ ├── Info.plist │ └── iOSSnapshotTestCaseSwiftPMDemoSwiftTests.swift │ ├── iOS Tests │ └── ReferenceImages_64 │ │ └── Tests_iOS.iOSSnapshotTestCaseSwiftPMDemoSwiftTests │ │ └── testExample@2x.png │ ├── iOS │ └── Info.plist │ └── iOSSnapshotTestCaseSwiftPMDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── iOSSnapshotTestCaseSwiftPMDemo (iOS).xcscheme ├── docs ├── HowToRelease.md └── LibraryVsApplicationTestBundles.md ├── iOSSnapshotTestCase.podspec └── src ├── iOSSnapshotTestCase └── SwiftSupport.swift ├── iOSSnapshotTestCaseCore ├── Categories │ ├── UIApplication+KeyWindow.h │ ├── UIApplication+KeyWindow.m │ ├── UIImage+Compare.h │ ├── UIImage+Compare.m │ ├── UIImage+Diff.h │ ├── UIImage+Diff.m │ ├── UIImage+Snapshot.h │ └── UIImage+Snapshot.m ├── FBSnapshotTestCase.m ├── FBSnapshotTestCasePlatform.m ├── FBSnapshotTestController.m ├── Public │ ├── FBSnapshotTestCase.h │ ├── FBSnapshotTestCasePlatform.h │ └── FBSnapshotTestController.h └── Resources │ └── FBSnapshotTestCase-Info.plist └── iOSSnapshotTestCaseTests ├── BUILD.bazel ├── FBSnapshotControllerTests.m └── Resources ├── FBSnapshotTestCaseTests-Info.plist ├── rect.png ├── rect_shade.png ├── square-copy.png ├── square.png ├── square_with_pixel.png └── square_with_text.png /.bazelrc: -------------------------------------------------------------------------------- 1 | build --apple_platform_type=ios 2 | -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 4.2.1 2 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCase iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCase iOS.xcscheme -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCase tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCase tvOS.xcscheme -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FBSnapshotTestCase.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/FBSnapshotTestCase.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/README.md -------------------------------------------------------------------------------- /SnapshotTest.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/SnapshotTest.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /SnapshotTest.xctemplate/___FILEBASENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/SnapshotTest.xctemplate/___FILEBASENAME___.m -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/WORKSPACE -------------------------------------------------------------------------------- /bin/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/bin/clang-format -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCaseDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCaseDemo.xcscheme -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCasePreprocessorDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcodeproj/xcshareddata/xcschemes/FBSnapshotTestCasePreprocessorDemo.xcscheme -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBAppDelegate.h -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBAppDelegate.m -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo-Info.plist -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo-Prefix.pch -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/Launch Screen.storyboard -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemo/main.m -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/FBSnapshotTestCaseDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/FBSnapshotTestCaseDemoTests-Info.plist -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/FBSnapshotTestCaseDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/FBSnapshotTestCaseDemoTests.m -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/FBSnapshotTestCaseSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/FBSnapshotTestCaseSwiftTests.swift -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest/testExample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest/testExample@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshot@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithDifferentBackgroundColorPerArchitecture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithDifferentBackgroundColorPerArchitecture@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearance@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearanceResizing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearanceResizing@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithVisualEffects@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_32/FBSnapshotTestCaseDemoTests/testViewSnapshotWithVisualEffects@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest/testExample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest/testExample@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest/testExample@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests.FBSnapshotTestCaseSwiftTest/testExample@3x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshot@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshot@3x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithDifferentBackgroundColorPerArchitecture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithDifferentBackgroundColorPerArchitecture@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithDifferentBackgroundColorPerArchitecture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithDifferentBackgroundColorPerArchitecture@3x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearance@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearance@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearance@3x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearanceResizing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearanceResizing@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearanceResizing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithUIAppearanceResizing@3x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithVisualEffects@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithVisualEffects@2x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithVisualEffects@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/ReferenceImages_64/FBSnapshotTestCaseDemoTests/testViewSnapshotWithVisualEffects@3x.png -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/FBSnapshotTestCaseDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/Podfile -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/Podfile.lock -------------------------------------------------------------------------------- /demos/FBSnapshotTestCaseDemo/Scheme_FB_REFERENCE_IMAGE_DIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/FBSnapshotTestCaseDemo/Scheme_FB_REFERENCE_IMAGE_DIR.png -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/Cartfile: -------------------------------------------------------------------------------- 1 | github "uber/ios-snapshot-test-case" -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "uber/ios-snapshot-test-case" "7.0.0" 2 | -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/xcshareddata/xcschemes/iOSSnapshotTestCaseCarthageDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo.xcodeproj/xcshareddata/xcschemes/iOSSnapshotTestCaseCarthageDemo.xcscheme -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/AppDelegate.swift -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemo/Info.plist -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/Info.plist -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/ReferenceImages_64/iOSSnapshotTestCaseCarthageDemoSwiftTests.iOSSnapshotTestCaseCarthageDemoSwiftTests/testExample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/ReferenceImages_64/iOSSnapshotTestCaseCarthageDemoSwiftTests.iOSSnapshotTestCaseCarthageDemoSwiftTests/testExample@2x.png -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/ReferenceImages_64/iOSSnapshotTestCaseCarthageDemoSwiftTests.iOSSnapshotTestCaseCarthageDemoSwiftTests/testExample@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/ReferenceImages_64/iOSSnapshotTestCaseCarthageDemoSwiftTests.iOSSnapshotTestCaseCarthageDemoSwiftTests/testExample@3x.png -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/iOSSnapshotTestCaseCarthageDemoSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseCarthageDemo/iOSSnapshotTestCaseCarthageDemoSwiftTests/iOSSnapshotTestCaseCarthageDemoSwiftTests.swift -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/ContentView.swift -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/iOSSnapshotTestCaseSwiftPMDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Shared/iOSSnapshotTestCaseSwiftPMDemoApp.swift -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Tests iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Tests iOS/Info.plist -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/Tests iOS/iOSSnapshotTestCaseSwiftPMDemoSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/Tests iOS/iOSSnapshotTestCaseSwiftPMDemoSwiftTests.swift -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/iOS Tests/ReferenceImages_64/Tests_iOS.iOSSnapshotTestCaseSwiftPMDemoSwiftTests/testExample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/iOS Tests/ReferenceImages_64/Tests_iOS.iOSSnapshotTestCaseSwiftPMDemoSwiftTests/testExample@2x.png -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/iOS/Info.plist -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/xcshareddata/xcschemes/iOSSnapshotTestCaseSwiftPMDemo (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/demos/iOSSnapshotTestCaseSwiftPMDemo/iOSSnapshotTestCaseSwiftPMDemo.xcodeproj/xcshareddata/xcschemes/iOSSnapshotTestCaseSwiftPMDemo (iOS).xcscheme -------------------------------------------------------------------------------- /docs/HowToRelease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/docs/HowToRelease.md -------------------------------------------------------------------------------- /docs/LibraryVsApplicationTestBundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/docs/LibraryVsApplicationTestBundles.md -------------------------------------------------------------------------------- /iOSSnapshotTestCase.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/iOSSnapshotTestCase.podspec -------------------------------------------------------------------------------- /src/iOSSnapshotTestCase/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCase/SwiftSupport.swift -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIApplication+KeyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIApplication+KeyWindow.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIApplication+KeyWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIApplication+KeyWindow.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIImage+Compare.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIImage+Compare.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIImage+Diff.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIImage+Diff.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIImage+Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIImage+Snapshot.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Categories/UIImage+Snapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Categories/UIImage+Snapshot.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/FBSnapshotTestController.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Public/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Public/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Public/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Public/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Public/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Public/FBSnapshotTestController.h -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseCore/Resources/FBSnapshotTestCase-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseCore/Resources/FBSnapshotTestCase-Info.plist -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/BUILD.bazel -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/FBSnapshotControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/FBSnapshotControllerTests.m -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/FBSnapshotTestCaseTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/FBSnapshotTestCaseTests-Info.plist -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/rect.png -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/rect_shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/rect_shade.png -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/square-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/square-copy.png -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/square.png -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/square_with_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/square_with_pixel.png -------------------------------------------------------------------------------- /src/iOSSnapshotTestCaseTests/Resources/square_with_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/ios-snapshot-test-case/HEAD/src/iOSSnapshotTestCaseTests/Resources/square_with_text.png --------------------------------------------------------------------------------