├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── PixelTest.xcscheme ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Example ├── Modules │ └── ExampleModule │ │ ├── ExampleModule.xcodeproj │ │ └── project.pbxproj │ │ ├── ExampleModule │ │ ├── ExampleModule.h │ │ ├── ExampleModuleView.swift │ │ ├── ExampleModuleView.xib │ │ ├── Info.plist │ │ └── UIView+NibLoading.swift │ │ └── ExampleModuleTests │ │ ├── .pixeltest │ │ └── ExampleModuleTests │ │ │ └── view │ │ │ └── Reference │ │ │ └── 320.0_dh@3.0x.png │ │ ├── ExampleModuleTests.swift │ │ └── Info.plist ├── PixelTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PixelTest-Example.xcscheme ├── PixelTest.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PixelTest │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Helpers │ │ └── UIView+NibLoading.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x-1.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── iTunesArtwork.png │ │ │ ├── iTunesArtwork@2x-1.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── Contents.json │ │ └── PixelTest.imageset │ │ │ ├── 3@3x.png │ │ │ └── Contents.json │ ├── Info.plist │ └── Views │ │ ├── CustomTableViewCell │ │ ├── CustomTableViewCell.swift │ │ └── CustomTableViewCell.xib │ │ ├── CustomTableViewHeaderView │ │ ├── CustomTableViewHeaderView.swift │ │ └── CustomTableViewHeaderView.xib │ │ ├── DynamicTypeView │ │ ├── DynamicTypeView.swift │ │ └── DynamicTypeView.xib │ │ └── SimpleView │ │ ├── SimpleView.swift │ │ └── SimpleView.xib ├── PixelTestExampleSnapshotTests │ ├── .pixeltest │ │ ├── CustomTableViewCellSnapshotTests │ │ │ ├── longData │ │ │ │ └── Reference │ │ │ │ │ └── 320.0_dh@3.0x.png │ │ │ └── regularData │ │ │ │ └── Reference │ │ │ │ └── 320.0_dh@3.0x.png │ │ ├── CustomTableViewHeaderViewSnapshotTests │ │ │ ├── longData │ │ │ │ └── Reference │ │ │ │ │ └── 320.0_dh@3.0x.png │ │ │ └── regularData │ │ │ │ └── Reference │ │ │ │ └── 320.0_dh@3.0x.png │ │ ├── DynamicTypeViewSnapshotTests │ │ │ ├── accessibilityExtraExtraExtraLargeSize │ │ │ │ └── Reference │ │ │ │ │ └── 320.0_dh@3.0x.png │ │ │ └── standardSize │ │ │ │ └── Reference │ │ │ │ └── 320.0_dh@3.0x.png │ │ └── PixelTestExampleSnapshotTests │ │ │ ├── simpleView_emptySubtitle │ │ │ └── Reference │ │ │ │ └── 320.0_dh@3.0x.png │ │ │ ├── simpleView_longData │ │ │ └── Reference │ │ │ │ └── 320.0_dh@3.0x.png │ │ │ ├── simpleView_longData_multipleWidths │ │ │ └── Reference │ │ │ │ ├── 320.0_dh@3.0x.png │ │ │ │ ├── 375.0_dh@3.0x.png │ │ │ │ └── 414.0_dh@3.0x.png │ │ │ └── simpleView_regularData │ │ │ └── Reference │ │ │ └── 320.0_dh@3.0x.png │ ├── CustomTableViewCellSnapshotTests.swift │ ├── CustomTableViewHeaderViewSnapshotTests.swift │ ├── DynamicTypeViewSnapshotTests.swift │ ├── Info.plist │ └── PixelTestExampleSnapshotTests.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── PixelTest.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PixelTest.xcscheme │ └── Target Support Files │ │ ├── PixelTest │ │ ├── Info.plist │ │ ├── PixelTest-Info.plist │ │ ├── PixelTest-dummy.m │ │ ├── PixelTest-prefix.pch │ │ ├── PixelTest-umbrella.h │ │ ├── PixelTest.modulemap │ │ └── PixelTest.xcconfig │ │ ├── Pods-ExampleModule-ExampleModuleTests │ │ ├── Pods-ExampleModule-ExampleModuleTests-Info.plist │ │ ├── Pods-ExampleModule-ExampleModuleTests-acknowledgements.markdown │ │ ├── Pods-ExampleModule-ExampleModuleTests-acknowledgements.plist │ │ ├── Pods-ExampleModule-ExampleModuleTests-dummy.m │ │ ├── Pods-ExampleModule-ExampleModuleTests-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-ExampleModule-ExampleModuleTests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-ExampleModule-ExampleModuleTests-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-ExampleModule-ExampleModuleTests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-ExampleModule-ExampleModuleTests-frameworks.sh │ │ ├── Pods-ExampleModule-ExampleModuleTests-umbrella.h │ │ ├── Pods-ExampleModule-ExampleModuleTests.debug.xcconfig │ │ ├── Pods-ExampleModule-ExampleModuleTests.modulemap │ │ └── Pods-ExampleModule-ExampleModuleTests.release.xcconfig │ │ ├── Pods-ExampleModule │ │ ├── Pods-ExampleModule-Info.plist │ │ ├── Pods-ExampleModule-acknowledgements.markdown │ │ ├── Pods-ExampleModule-acknowledgements.plist │ │ ├── Pods-ExampleModule-dummy.m │ │ ├── Pods-ExampleModule-umbrella.h │ │ ├── Pods-ExampleModule.debug.xcconfig │ │ ├── Pods-ExampleModule.modulemap │ │ └── Pods-ExampleModule.release.xcconfig │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.markdown │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.plist │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests-frameworks.sh │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests.debug.xcconfig │ │ ├── Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap │ │ └── Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig │ │ ├── Pods-PixelTest_Example-PixelTest_Tests │ │ ├── Pods-PixelTest_Example-PixelTest_Tests-Info.plist │ │ ├── Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.markdown │ │ ├── Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.plist │ │ ├── Pods-PixelTest_Example-PixelTest_Tests-dummy.m │ │ ├── Pods-PixelTest_Example-PixelTest_Tests-frameworks.sh │ │ ├── Pods-PixelTest_Example-PixelTest_Tests-umbrella.h │ │ ├── Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig │ │ ├── Pods-PixelTest_Example-PixelTest_Tests.modulemap │ │ └── Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig │ │ └── Pods-PixelTest_Example │ │ ├── Pods-PixelTest_Example-Info.plist │ │ ├── Pods-PixelTest_Example-acknowledgements.markdown │ │ ├── Pods-PixelTest_Example-acknowledgements.plist │ │ ├── Pods-PixelTest_Example-dummy.m │ │ ├── Pods-PixelTest_Example-umbrella.h │ │ ├── Pods-PixelTest_Example.debug.xcconfig │ │ ├── Pods-PixelTest_Example.modulemap │ │ └── Pods-PixelTest_Example.release.xcconfig └── Tests │ ├── .pixeltest │ └── PixelTestCaseTests │ │ └── _success │ │ └── Reference │ │ └── dw_dh@3.0x.png │ ├── FileCoordinatorTests.swift │ ├── Info.plist │ ├── LayoutCoordinatorTests.swift │ ├── LayoutStyleTests.swift │ ├── PixelTestCaseTests.swift │ ├── RecordCoordinatorTests.swift │ ├── ScaleTests.swift │ ├── TestCoordinatorTests.swift │ ├── UIImage+DiffImageTests.swift │ └── UIImage+EqualToTests.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── PixelTest.podspec ├── PixelTest ├── Coordinators │ ├── FileCoordinator.swift │ ├── LayoutCoordinator.swift │ ├── RecordCoordinator.swift │ ├── ResultsCoordinator.swift │ └── TestCoordinator.swift ├── Extensions │ ├── String+Content.swift │ ├── UIImage+PixelTest.swift │ ├── UIImage+Placeholder.swift │ ├── UIView+PixelTest.swift │ ├── XCTestCase+AddAttachmentWithName.swift │ └── XCTestCase+InfoPlist.swift ├── Models │ ├── Configuration.swift │ ├── Errors.swift │ ├── ImageType.swift │ ├── InfoPlist.swift │ ├── LayoutStyle.swift │ ├── Mode.swift │ ├── PlaceholderImageGenerator.swift │ └── Scale.swift ├── PixelTest+VerifyConveniences.swift ├── PixelTestCase.swift └── Protocols │ ├── FileCoordinatorType.swift │ ├── FileManagerType.swift │ ├── LayoutCoordinatorType.swift │ ├── RecordCoordinatorType.swift │ └── TestCoordinatorType.swift ├── README.md └── _Pods.xcodeproj /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/PixelTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/PixelTest.xcscheme -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModule.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModule.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModule/ExampleModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModule/ExampleModule.h -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModule/ExampleModuleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModule/ExampleModuleView.swift -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModule/ExampleModuleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModule/ExampleModuleView.xib -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModule/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModule/Info.plist -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModule/UIView+NibLoading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModule/UIView+NibLoading.swift -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModuleTests/.pixeltest/ExampleModuleTests/view/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModuleTests/.pixeltest/ExampleModuleTests/view/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModuleTests/ExampleModuleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModuleTests/ExampleModuleTests.swift -------------------------------------------------------------------------------- /Example/Modules/ExampleModule/ExampleModuleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Modules/ExampleModule/ExampleModuleTests/Info.plist -------------------------------------------------------------------------------- /Example/PixelTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PixelTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PixelTest.xcodeproj/xcshareddata/xcschemes/PixelTest-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest.xcodeproj/xcshareddata/xcschemes/PixelTest-Example.xcscheme -------------------------------------------------------------------------------- /Example/PixelTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PixelTest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PixelTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/AppDelegate.swift -------------------------------------------------------------------------------- /Example/PixelTest/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/PixelTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/PixelTest/Helpers/UIView+NibLoading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Helpers/UIView+NibLoading.swift -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/iTunesArtwork.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/iTunesArtwork@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/iTunesArtwork@2x-1.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/PixelTest.imageset/3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/PixelTest.imageset/3@3x.png -------------------------------------------------------------------------------- /Example/PixelTest/Images.xcassets/PixelTest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Images.xcassets/PixelTest.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PixelTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Info.plist -------------------------------------------------------------------------------- /Example/PixelTest/Views/CustomTableViewCell/CustomTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/CustomTableViewCell/CustomTableViewCell.swift -------------------------------------------------------------------------------- /Example/PixelTest/Views/CustomTableViewCell/CustomTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/CustomTableViewCell/CustomTableViewCell.xib -------------------------------------------------------------------------------- /Example/PixelTest/Views/CustomTableViewHeaderView/CustomTableViewHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/CustomTableViewHeaderView/CustomTableViewHeaderView.swift -------------------------------------------------------------------------------- /Example/PixelTest/Views/CustomTableViewHeaderView/CustomTableViewHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/CustomTableViewHeaderView/CustomTableViewHeaderView.xib -------------------------------------------------------------------------------- /Example/PixelTest/Views/DynamicTypeView/DynamicTypeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/DynamicTypeView/DynamicTypeView.swift -------------------------------------------------------------------------------- /Example/PixelTest/Views/DynamicTypeView/DynamicTypeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/DynamicTypeView/DynamicTypeView.xib -------------------------------------------------------------------------------- /Example/PixelTest/Views/SimpleView/SimpleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/SimpleView/SimpleView.swift -------------------------------------------------------------------------------- /Example/PixelTest/Views/SimpleView/SimpleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTest/Views/SimpleView/SimpleView.xib -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewCellSnapshotTests/longData/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewCellSnapshotTests/longData/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewCellSnapshotTests/regularData/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewCellSnapshotTests/regularData/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewHeaderViewSnapshotTests/longData/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewHeaderViewSnapshotTests/longData/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewHeaderViewSnapshotTests/regularData/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/CustomTableViewHeaderViewSnapshotTests/regularData/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/DynamicTypeViewSnapshotTests/accessibilityExtraExtraExtraLargeSize/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/DynamicTypeViewSnapshotTests/accessibilityExtraExtraExtraLargeSize/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/DynamicTypeViewSnapshotTests/standardSize/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/DynamicTypeViewSnapshotTests/standardSize/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_emptySubtitle/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_emptySubtitle/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData_multipleWidths/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData_multipleWidths/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData_multipleWidths/Reference/375.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData_multipleWidths/Reference/375.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData_multipleWidths/Reference/414.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_longData_multipleWidths/Reference/414.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_regularData/Reference/320.0_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/.pixeltest/PixelTestExampleSnapshotTests/simpleView_regularData/Reference/320.0_dh@3.0x.png -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/CustomTableViewCellSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/CustomTableViewCellSnapshotTests.swift -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/CustomTableViewHeaderViewSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/CustomTableViewHeaderViewSnapshotTests.swift -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/DynamicTypeViewSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/DynamicTypeViewSnapshotTests.swift -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/Info.plist -------------------------------------------------------------------------------- /Example/PixelTestExampleSnapshotTests/PixelTestExampleSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/PixelTestExampleSnapshotTests/PixelTestExampleSnapshotTests.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PixelTest.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Local Podspecs/PixelTest.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PixelTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PixelTest.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/PixelTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/PixelTest-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/PixelTest-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/PixelTest-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/PixelTest-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/PixelTest-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/PixelTest-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/PixelTest-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/PixelTest.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/PixelTest.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PixelTest/PixelTest.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/PixelTest/PixelTest.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PixelTest.framework -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PixelTest.framework -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule-ExampleModuleTests/Pods-ExampleModule-ExampleModuleTests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-ExampleModule/Pods-ExampleModule.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Pods/Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/.pixeltest/PixelTestCaseTests/_success/Reference/dw_dh@3.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/.pixeltest/PixelTestCaseTests/_success/Reference/dw_dh@3.0x.png -------------------------------------------------------------------------------- /Example/Tests/FileCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/FileCoordinatorTests.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/LayoutCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/LayoutCoordinatorTests.swift -------------------------------------------------------------------------------- /Example/Tests/LayoutStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/LayoutStyleTests.swift -------------------------------------------------------------------------------- /Example/Tests/PixelTestCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/PixelTestCaseTests.swift -------------------------------------------------------------------------------- /Example/Tests/RecordCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/RecordCoordinatorTests.swift -------------------------------------------------------------------------------- /Example/Tests/ScaleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/ScaleTests.swift -------------------------------------------------------------------------------- /Example/Tests/TestCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/TestCoordinatorTests.swift -------------------------------------------------------------------------------- /Example/Tests/UIImage+DiffImageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/UIImage+DiffImageTests.swift -------------------------------------------------------------------------------- /Example/Tests/UIImage+EqualToTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Example/Tests/UIImage+EqualToTests.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/Package.swift -------------------------------------------------------------------------------- /PixelTest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest.podspec -------------------------------------------------------------------------------- /PixelTest/Coordinators/FileCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Coordinators/FileCoordinator.swift -------------------------------------------------------------------------------- /PixelTest/Coordinators/LayoutCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Coordinators/LayoutCoordinator.swift -------------------------------------------------------------------------------- /PixelTest/Coordinators/RecordCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Coordinators/RecordCoordinator.swift -------------------------------------------------------------------------------- /PixelTest/Coordinators/ResultsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Coordinators/ResultsCoordinator.swift -------------------------------------------------------------------------------- /PixelTest/Coordinators/TestCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Coordinators/TestCoordinator.swift -------------------------------------------------------------------------------- /PixelTest/Extensions/String+Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Extensions/String+Content.swift -------------------------------------------------------------------------------- /PixelTest/Extensions/UIImage+PixelTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Extensions/UIImage+PixelTest.swift -------------------------------------------------------------------------------- /PixelTest/Extensions/UIImage+Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Extensions/UIImage+Placeholder.swift -------------------------------------------------------------------------------- /PixelTest/Extensions/UIView+PixelTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Extensions/UIView+PixelTest.swift -------------------------------------------------------------------------------- /PixelTest/Extensions/XCTestCase+AddAttachmentWithName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Extensions/XCTestCase+AddAttachmentWithName.swift -------------------------------------------------------------------------------- /PixelTest/Extensions/XCTestCase+InfoPlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Extensions/XCTestCase+InfoPlist.swift -------------------------------------------------------------------------------- /PixelTest/Models/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/Configuration.swift -------------------------------------------------------------------------------- /PixelTest/Models/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/Errors.swift -------------------------------------------------------------------------------- /PixelTest/Models/ImageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/ImageType.swift -------------------------------------------------------------------------------- /PixelTest/Models/InfoPlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/InfoPlist.swift -------------------------------------------------------------------------------- /PixelTest/Models/LayoutStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/LayoutStyle.swift -------------------------------------------------------------------------------- /PixelTest/Models/Mode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/Mode.swift -------------------------------------------------------------------------------- /PixelTest/Models/PlaceholderImageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/PlaceholderImageGenerator.swift -------------------------------------------------------------------------------- /PixelTest/Models/Scale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Models/Scale.swift -------------------------------------------------------------------------------- /PixelTest/PixelTest+VerifyConveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/PixelTest+VerifyConveniences.swift -------------------------------------------------------------------------------- /PixelTest/PixelTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/PixelTestCase.swift -------------------------------------------------------------------------------- /PixelTest/Protocols/FileCoordinatorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Protocols/FileCoordinatorType.swift -------------------------------------------------------------------------------- /PixelTest/Protocols/FileManagerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Protocols/FileManagerType.swift -------------------------------------------------------------------------------- /PixelTest/Protocols/LayoutCoordinatorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Protocols/LayoutCoordinatorType.swift -------------------------------------------------------------------------------- /PixelTest/Protocols/RecordCoordinatorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Protocols/RecordCoordinatorType.swift -------------------------------------------------------------------------------- /PixelTest/Protocols/TestCoordinatorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/PixelTest/Protocols/TestCoordinatorType.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaneCheshire/PixelTest/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------