diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 65a32f3b4..3b3e63619 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,13 +13,12 @@ jobs:
strategy:
matrix:
xcode:
- - "11.7" # Swift 5.2
- - "12.4" # Swift 5.3
- - "12.5.1" # Swift 5.4
- - "13.0" # Swift 5.5
+ - "13.2.1" # Swift 5.5.2
+ - "13.4.1" # Swift 5.6.1
+ - "14.0" # Swift 5.7
- name: macOS 11, Xcode ${{ matrix.xcode }}
- runs-on: macos-11
+ name: macOS 12 (Xcode ${{ matrix.xcode }})
+ runs-on: macos-12
steps:
- uses: actions/checkout@v1
- name: Select Xcode ${{ matrix.xcode }}
@@ -30,32 +29,42 @@ jobs:
ubuntu:
strategy:
matrix:
- os: ["18.04", "20.04"]
+ swift:
+ - "5.5"
+ - "5.6"
+ - "5.7"
- name: Ubuntu ${{ matrix.os }}
- runs-on: ubuntu-${{ matrix.os }}
+ name: Ubuntu (Swift ${{ matrix.swift }})
+ runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
- - name: Run tests
- run: make test-linux
+ - uses: swift-actions/setup-swift@v1
+ with:
+ swift-version: ${{ matrix.swift }}
+ - uses: actions/checkout@v2
+ - run: swift test
windows:
strategy:
matrix:
swift:
- - "5.4"
- "5.5"
+ - "5.6"
+ #- "5.7"
- name: Windows 2019, Swift ${{ matrix.swift }}
+ name: Windows (Swift ${{ matrix.swift }})
runs-on: windows-2019
steps:
+ - uses: compnerd/gha-setup-swift@main
+ with:
+ branch: swift-${{ matrix.swift }}-release
+ tag: ${{ matrix.swift }}-RELEASE
+
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
+
- uses: actions/checkout@v2
- - uses: MaxDesiatov/swift-windows-action@v1
- with:
- shell-action: swift test
- swift-version: ${{ matrix.swift }}
+ - run: swift build
+ - run: swift test
diff --git a/Makefile b/Makefile
index 770df2dbf..2c6ba9426 100644
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,21 @@
-xcodeproj:
- PF_DEVELOP=1 swift run xcodegen
-
test-linux:
docker run \
--rm \
-v "$(PWD):$(PWD)" \
-w "$(PWD)" \
- swift:5.2 \
- bash -c 'make test-swift'
+ swift:5.7-focal \
+ bash -c 'swift test'
test-macos:
set -o pipefail && \
xcodebuild test \
- -scheme SnapshotTesting_macOS \
+ -scheme SnapshotTesting \
-destination platform="macOS" \
test-ios:
set -o pipefail && \
xcodebuild test \
- -scheme SnapshotTesting_iOS \
+ -scheme SnapshotTesting \
-destination platform="iOS Simulator,name=iPhone 11 Pro Max,OS=13.3" \
test-swift:
@@ -27,7 +24,7 @@ test-swift:
test-tvos:
set -o pipefail && \
xcodebuild test \
- -scheme SnapshotTesting_tvOS \
+ -scheme SnapshotTesting \
-destination platform="tvOS Simulator,name=Apple TV 4K,OS=13.3" \
test-all: test-linux test-macos test-ios
diff --git a/README.md b/README.md
index b5add82d0..9958dacae 100644
--- a/README.md
+++ b/README.md
@@ -128,12 +128,12 @@ If your data can be represented as an image, text, or data, you can write a snap
## Installation
-### Xcode 11
+### Xcode
> ⚠️ Warning: By default, Xcode will try to add the SnapshotTesting package to your project's main application/framework target. Please ensure that SnapshotTesting is added to a _test_ target instead, as documented in the last step, below.
1. From the **File** menu, navigate through **Swift Packages** and select **Add Package Dependency…**.
- 2. Enter package repository URL: `https://github.com/pointfreeco/swift-snapshot-testing.git`
+ 2. Enter package repository URL: `https://github.com/pointfreeco/swift-snapshot-testing`
3. Confirm the version and let Xcode resolve the package
4. On the final dialog, update SnapshotTesting's **Add to Target** column to a test target that will contain snapshot tests (if you have more than one test target, you can later add SnapshotTesting to them by manually linking the library in its build phase)
@@ -144,7 +144,7 @@ If you want to use SnapshotTesting in any other project that uses [SwiftPM](http
```swift
dependencies: [
.package(
- url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
+ url: "https://github.com/pointfreeco/swift-snapshot-testing",
from: "1.9.0"
),
]
@@ -165,33 +165,6 @@ targets: [
]
```
-### Carthage
-
-If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:
-
-``` ruby
-github "pointfreeco/swift-snapshot-testing" ~> 1.9.0
-```
-
-> ⚠️ Warning: Carthage instructs you to drag frameworks into your Xcode project. Xcode may automatically attempt to link these frameworks to your app target. `SnapshotTesting.framework` is only compatible with test targets, so when you first add it to your project:
->
-> 1. Remove `SnapshotTesting.framework` from any non-test target it may have been added to.
-> 2. Add `SnapshotTesting.framework` to any applicable test targets.
-> 3. Add a **New Copy Build Phase** to any applicable test targets with **Destination** set to "Frameworks", and add `SnapshotTesting.framework` as an item to this phase.
-> 4. Do _not_ add `SnapshotTesting.framework` to the "Input Files" or "Output Files" of your app target's Carthage `copy-frameworks` **Run Script Phase**.
->
-> See Carthage's "[Adding frameworks to unit tests or a framework](https://github.com/Carthage/Carthage#adding-frameworks-to-unit-tests-or-a-framework)" documentation for more.
-
-### CocoaPods
-
-If your project uses [CocoaPods](https://cocoapods.org), add the pod to any applicable test targets in your `Podfile`:
-
-```ruby
-target 'MyAppTests' do
- pod 'SnapshotTesting', '~> 1.9.0'
-end
-```
-
## Features
- [**Dozens of snapshot strategies**](Documentation/Available-Snapshot-Strategies.md). Snapshot testing isn't just for `UIView`s and `CALayer`s. Write snapshots against _any_ value.
diff --git a/SnapshotTesting.podspec b/SnapshotTesting.podspec
deleted file mode 100644
index 256fde0e5..000000000
--- a/SnapshotTesting.podspec
+++ /dev/null
@@ -1,37 +0,0 @@
-Pod::Spec.new do |s|
- s.name = "SnapshotTesting"
- s.version = "1.9.0"
- s.summary = "Tests that save and assert against reference data"
-
- s.description = <<-DESC
- Automatically record app data into test assertions. Snapshot tests capture
- the entirety of a data structure and cover far more surface area than a
- typical unit test.
- DESC
-
- s.homepage = "https://github.com/pointfreeco/swift-snapshot-testing"
-
- s.license = "MIT"
-
- s.authors = {
- "Stephen Celis" => "stephen@stephencelis.com",
- "Brandon Williams" => "mbw234@gmail.com"
- }
- s.social_media_url = "https://twitter.com/pointfreeco"
-
- s.source = {
- :git => "https://github.com/pointfreeco/swift-snapshot-testing.git",
- :tag => s.version
- }
-
- s.swift_versions = "5.0", "5.1.2", "5.2"
-
- s.ios.deployment_target = "11.0"
- s.osx.deployment_target = "10.10"
- s.tvos.deployment_target = "10.0"
-
- s.frameworks = "XCTest"
- s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
-
- s.source_files = "Sources", "Sources/**/*.swift"
-end
diff --git a/SnapshotTesting.xcodeproj/Diff_Info.plist b/SnapshotTesting.xcodeproj/Diff_Info.plist
deleted file mode 100644
index 57ada9f9d..000000000
--- a/SnapshotTesting.xcodeproj/Diff_Info.plist
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
- NSPrincipalClass
-
-
-
diff --git a/SnapshotTesting.xcodeproj/SnapshotTestingTests_Info.plist b/SnapshotTesting.xcodeproj/SnapshotTestingTests_Info.plist
deleted file mode 100644
index 7c23420d0..000000000
--- a/SnapshotTesting.xcodeproj/SnapshotTestingTests_Info.plist
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- BNDL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
- NSPrincipalClass
-
-
-
diff --git a/SnapshotTesting.xcodeproj/SnapshotTesting_Info.plist b/SnapshotTesting.xcodeproj/SnapshotTesting_Info.plist
deleted file mode 100644
index 57ada9f9d..000000000
--- a/SnapshotTesting.xcodeproj/SnapshotTesting_Info.plist
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
- NSPrincipalClass
-
-
-
diff --git a/SnapshotTesting.xcodeproj/WKSnapshotConfigurationShim_Info.plist b/SnapshotTesting.xcodeproj/WKSnapshotConfigurationShim_Info.plist
deleted file mode 100644
index 57ada9f9d..000000000
--- a/SnapshotTesting.xcodeproj/WKSnapshotConfigurationShim_Info.plist
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
- NSPrincipalClass
-
-
-
diff --git a/SnapshotTesting.xcodeproj/project.pbxproj b/SnapshotTesting.xcodeproj/project.pbxproj
deleted file mode 100644
index f83e1df44..000000000
--- a/SnapshotTesting.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,1421 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 51;
- objects = {
-
-/* Begin PBXBuildFile section */
- 0245D418EA6D8A21A0BF971E /* testUpdateSnapshotWithMoreLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0BC8BF7E37686D31F59B9F6 /* testUpdateSnapshotWithMoreLines.1.swift */; };
- 038184DBCE934EA8E69E075B /* Diffing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 619A277E9C7B85515EC88C84 /* Diffing.swift */; };
- 04B16C816033F9BAC3D9D3C7 /* testCreateSnapshotMultiLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C685ECE195C23560AFD1456 /* testCreateSnapshotMultiLine.1.swift */; };
- 04DCB36E9801AE497F2FA206 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE91B5904B3F67A3A01610C8 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift */; };
- 066041367BD8A6246C1F47F7 /* Snapshotting.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D7D5B93AE097C0B92B78931 /* Snapshotting.swift */; };
- 06BA09CBE16A002564A3D098 /* SceneKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5580E7AC2CEBEA656780C7A9 /* SceneKit.swift */; };
- 077786494E140FE190E446CF /* testCreateSnapshotWithExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB18BB1F44D13D5C5FE09A6 /* testCreateSnapshotWithExtendedDelimiter1.1.swift */; };
- 07D9C5BEF5652BFBA04FD6AF /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E18803C6CA9CC80FF55033 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift */; };
- 08C8278A038756916D597D02 /* NSViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB124D18325606D35B7027A6 /* NSViewController.swift */; };
- 09A4B43A6919A2A01B5DF5DC /* testUpdateSnapshotWithExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D7D0D81B7E35C6284A3E65 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift */; };
- 0A2CA2628AD949722548B375 /* testUpdateSnapshotWithLessLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = A906E6EBBD9DC8CFDA3CF642 /* testUpdateSnapshotWithLessLines.1.swift */; };
- 0A587A871DEED36F70A5183E /* testCreateSnapshotWithExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A69D6A4D06EB76C77493EB7 /* testCreateSnapshotWithExtendedDelimiter2.1.swift */; };
- 0B77E68275BFA9F7C6C4A7DB /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EDE232DB652745F05B478F4 /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift */; };
- 0C80A6C3FD6C62FDAC4123B3 /* UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 810407271A6CB90161DCE6A0 /* UIImage.swift */; };
- 0FA2819099AC626FF01F2E97 /* Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EEE36D7D9E53E70DABA3996 /* Diff.swift */; };
- 10F68BDF40D553B893C6CB1E /* String+SpecialCharacters.swift in Sources */ = {isa = PBXBuildFile; fileRef = D49092873A7A5D6DA623E352 /* String+SpecialCharacters.swift */; };
- 12409E35EBC6780D668171B3 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CAC8CA2C073A9D03BC22880 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift */; };
- 1247D995CD603F65D31746C0 /* testWait.1.txt in Resources */ = {isa = PBXBuildFile; fileRef = 53F63F2CD9E9F164EB7AF753 /* testWait.1.txt */; };
- 133A694B28958DA656061EC8 /* testCreateSnapshotEscapedNewlineLastLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8F1FEF91276E0D2BEFD9BC6 /* testCreateSnapshotEscapedNewlineLastLine.1.swift */; };
- 1420B1BBC10CFF4D03C8AA67 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 646ABA578B433C2F4DD4A086 /* Async.swift */; };
- 1579ACF34130151145F8B7F9 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AF3E4E28A1292D02E080C7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift */; };
- 185A126A1D7C76FE910C6A2F /* testCreateSnapshotSingleLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47F0BCE5A339D74CD4AE05C2 /* testCreateSnapshotSingleLine.1.swift */; };
- 19CAE304A06A92323E7C225C /* testCreateSnapshotMultiLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C685ECE195C23560AFD1456 /* testCreateSnapshotMultiLine.1.swift */; };
- 1A0FB107B2820F9B33EFE2BB /* String.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04F429C62A87AC95E13E2D78 /* String.swift */; };
- 1ABB68DCE39CE794B07296A7 /* UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AAFA3BB389939B18F4D7187 /* UIViewController.swift */; };
- 1AF02DC6F0CD8B36DD2CEEB5 /* CGPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F2750685230CC3BC17BDEAB /* CGPath.swift */; };
- 1D24E76D17FCE8E61B1F0387 /* testCreateSnapshotEscapedNewlineLastLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8F1FEF91276E0D2BEFD9BC6 /* testCreateSnapshotEscapedNewlineLastLine.1.swift */; };
- 1FF2453D55C601BDC68646D9 /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E7085488C51876C1E9B871C /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift */; };
- 2336ECD86073FAB4CFC26CC2 /* InlineSnapshotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D3BC50BC4692DC6D9FAE0F /* InlineSnapshotTests.swift */; };
- 2706E738D0BF540260D1F776 /* CALayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96E01FF29B2959DE5FD093FB /* CALayer.swift */; };
- 27E2E64971E40DB5E6E84BB6 /* NSBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 599AA3651C4CEE464302CFDD /* NSBezierPath.swift */; };
- 28106F59B265148F2CB38B5B /* CaseIterable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B843712AB555B46BA6E4EC2A /* CaseIterable.swift */; };
- 29602B6DD2A43E1C13DF1D42 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 646ABA578B433C2F4DD4A086 /* Async.swift */; };
- 2A062189ED2218A03B1CB3CB /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4796690CC049B52358D7173A /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift */; };
- 2D9BA837D802B7347244178B /* UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 810407271A6CB90161DCE6A0 /* UIImage.swift */; };
- 2E3F562DF4A8251E6ED4704C /* SnapshotTesting.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 8F9883B60A8B403A39BCF888 /* SnapshotTesting.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- 30413A9E862B77B868A57B65 /* URLRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7A398EA6B5594232933158 /* URLRequest.swift */; };
- 3079CF3C05E4FCE8F29053AC /* XCTAttachment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BE8DE5E8A102E1012CD0C95 /* XCTAttachment.swift */; };
- 3375935EAD0B4B587E08D009 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADACB597E6A3CAC5BFEEFB05 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift */; };
- 345FB3E29989E8B1DA53617A /* NSView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9D57E3B929139A0C14AEBA7 /* NSView.swift */; };
- 379DF6110162DE4D59CD48FB /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13AB875AB58FF3BCAC1AA66 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift */; };
- 38E662FA1D63541B94FDA00F /* testUpdateSeveralSnapshotsSwapingLines2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = D77BE996AE7868E9B58D6C74 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift */; };
- 38E93DA9BA1639327AEEA89E /* testUpdateSnapshotCombined1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94A6FCFFED1BDCF9090E5FEC /* testUpdateSnapshotCombined1.1.swift */; };
- 3919A4BA4A0D247767997FB6 /* Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10213E0E8B550596F75463C3 /* Wait.swift */; };
- 393181237190376E8A9D300E /* View.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F6B5B3AB021FA3CD7519733 /* View.swift */; };
- 3CB93CF15AA49A2CB461D45E /* UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D04C79E5D44F1874BBACB11 /* UIView.swift */; };
- 3E5C7662C80553ED51ED655B /* Diffing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 619A277E9C7B85515EC88C84 /* Diffing.swift */; };
- 3FDA79CD7E2D26217A5132DA /* NSView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9D57E3B929139A0C14AEBA7 /* NSView.swift */; };
- 42B1EA1619E926A4391D176F /* Description.swift in Sources */ = {isa = PBXBuildFile; fileRef = A76261A778A1B8C06EB7E1B4 /* Description.swift */; };
- 42BCD8FC5433734A7BD80486 /* SnapshotTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CD2F74288CF52A13C9BB497 /* SnapshotTestCase.swift */; };
- 42EEB5E183FA787232DCF756 /* UIBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2641BBEB31120E3B7FE5EA51 /* UIBezierPath.swift */; };
- 436C10BC8313288D84733DC5 /* UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D04C79E5D44F1874BBACB11 /* UIView.swift */; };
- 4521C5D2FE3CE1784C44A210 /* XCTAttachment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BE8DE5E8A102E1012CD0C95 /* XCTAttachment.swift */; };
- 45FAA85BB7198113155FD27F /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 646ABA578B433C2F4DD4A086 /* Async.swift */; };
- 468C9CBF306D8D8F87BC35AC /* SnapshotTesting.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3BBC3220F45BA5E71F819602 /* SnapshotTesting.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- 4A95F6990FFA0B2F52CAC260 /* Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F479E2BD835B9641B85EB51E /* Internal.swift */; };
- 4CF683A5FA0EDF2C6ABC8B10 /* UIBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2641BBEB31120E3B7FE5EA51 /* UIBezierPath.swift */; };
- 4D153EF65CD179C5359C088C /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CD3B175977519BCF6179FD0 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift */; };
- 4D36F6FD7EC4C9D5EFEB1B54 /* WaitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D86810F80142B1A3265C4F74 /* WaitTests.swift */; };
- 4DCF3527100FE3577AB7074B /* Snapshotting.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D7D5B93AE097C0B92B78931 /* Snapshotting.swift */; };
- 4E2EC852FBB3BF0C7E9D8AB0 /* Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F479E2BD835B9641B85EB51E /* Internal.swift */; };
- 5009B0AB4DFBBFCAF5BBFD72 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49C676C30FCAE10DB1773832 /* TestHelpers.swift */; };
- 52B7C3800F08E80D7BA8600D /* AssertSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0B236137C960C05554D4310 /* AssertSnapshot.swift */; };
- 53BA9B309A5C142DF43C7102 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADACB597E6A3CAC5BFEEFB05 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift */; };
- 56551E9E2E7A3DCF41C966F1 /* AssertInlineSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD800FD3282956340AD7706A /* AssertInlineSnapshot.swift */; };
- 56A5360AAD7ADF0AF82BCA67 /* InlineSnapshotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D3BC50BC4692DC6D9FAE0F /* InlineSnapshotTests.swift */; };
- 573488A1374FE9CD280A0BEE /* URLRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7A398EA6B5594232933158 /* URLRequest.swift */; };
- 5A5F87646FB492693503E9C3 /* SnapshotTesting.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 50945BA2653A2A96CFA62431 /* SnapshotTesting.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- 5C7623E2C040A67AEF4BE329 /* Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D7CFCA42A4D2168436F6C1 /* Codable.swift */; };
- 5C9B450582B24CD89D7F9977 /* testUpdateSnapshot.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1FE81FC04984B93B0C27FA6 /* testUpdateSnapshot.1.swift */; };
- 5E7F4795AFED0D8D4E1D75A6 /* UIBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2641BBEB31120E3B7FE5EA51 /* UIBezierPath.swift */; };
- 5F4CD3628962897AC0D56799 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AF3E4E28A1292D02E080C7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift */; };
- 620758875CDFB7D9C6442A75 /* CaseIterable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B843712AB555B46BA6E4EC2A /* CaseIterable.swift */; };
- 63F5F347F14D6F8997D29867 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECEC001D7DB94ECB4F5A2CF9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift */; };
- 648E0BF61716417CE60ADF13 /* SpriteKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4055310797F1D4813ABD0359 /* SpriteKit.swift */; };
- 65D67E27AE9B3103D64017F9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECEC001D7DB94ECB4F5A2CF9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift */; };
- 65ED4CF70D09F51DAD4C692A /* UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AAFA3BB389939B18F4D7187 /* UIViewController.swift */; };
- 6630A021629D13CD012A62FD /* UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D04C79E5D44F1874BBACB11 /* UIView.swift */; };
- 68106F33F94393CDE2A8357B /* testUpdateSnapshotWithMoreLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0BC8BF7E37686D31F59B9F6 /* testUpdateSnapshotWithMoreLines.1.swift */; };
- 6839408A3D220CC5196456BC /* Snapshotting.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D7D5B93AE097C0B92B78931 /* Snapshotting.swift */; };
- 68D1851C9FC695A684155D60 /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4796690CC049B52358D7173A /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift */; };
- 69CC956C57E7C75D4518E32B /* testUpdateSeveralSnapshotsWithLessLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BC721A155DB7D81BE69683 /* testUpdateSeveralSnapshotsWithLessLines.1.swift */; };
- 6BCCCC6BAA13CE8DF37B92C7 /* Diffing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 619A277E9C7B85515EC88C84 /* Diffing.swift */; };
- 6C48EAD7C6D1441EE12F907B /* AssertSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0B236137C960C05554D4310 /* AssertSnapshot.swift */; };
- 6CAB0714112F5AAE5D0FBD23 /* AssertInlineSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD800FD3282956340AD7706A /* AssertInlineSnapshot.swift */; };
- 6E50CE7921A0D62C78E85637 /* CaseIterable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B843712AB555B46BA6E4EC2A /* CaseIterable.swift */; };
- 76D4B4FEF767C6E546A261D1 /* InlineSnapshotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D3BC50BC4692DC6D9FAE0F /* InlineSnapshotTests.swift */; };
- 785ECE356ECA7C1564D99932 /* NSImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48914A258708D7AC11DC12EF /* NSImage.swift */; };
- 7866CC909D70D49D1EEF9F45 /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4796690CC049B52358D7173A /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift */; };
- 789E86CBD26991DA22BA051A /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAA9C51757FC5DC679F5DC72 /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift */; };
- 7A113ED6F1950924A9012428 /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7585E299A8FF3416E005E3FD /* SwiftUIView.swift */; };
- 7B9F0DFC589C66887A37F0FB /* URLRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7A398EA6B5594232933158 /* URLRequest.swift */; };
- 7C48053A90BCB45B35C432F4 /* testUpdateSnapshot.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1FE81FC04984B93B0C27FA6 /* testUpdateSnapshot.1.swift */; };
- 7EDE9C3850EC4AF1100E6AB7 /* WaitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D86810F80142B1A3265C4F74 /* WaitTests.swift */; };
- 8442C5AE49466F0F0CB6BD9C /* SnapshotTestingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA789F513A8B1E8EF5BF81E2 /* SnapshotTestingTests.swift */; };
- 87B0D39F14038FF162ADA25A /* CGPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F2750685230CC3BC17BDEAB /* CGPath.swift */; };
- 87D3745DBD172E3E6427190F /* Any.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8F831EAAFB97204ECD0B879 /* Any.swift */; };
- 8BDA8D067C1A9BDD7EFB1E78 /* String+SpecialCharacters.swift in Sources */ = {isa = PBXBuildFile; fileRef = D49092873A7A5D6DA623E352 /* String+SpecialCharacters.swift */; };
- 8C428A751E6342E2CE46E4CB /* NSViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB124D18325606D35B7027A6 /* NSViewController.swift */; };
- 8C4AC3C0BAAA1275BF205637 /* Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D7CFCA42A4D2168436F6C1 /* Codable.swift */; };
- 90555C6EB17BD465E901043A /* AssertInlineSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD800FD3282956340AD7706A /* AssertInlineSnapshot.swift */; };
- 9068EBD3D0BB87B3CB76FFBA /* Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EEE36D7D9E53E70DABA3996 /* Diff.swift */; };
- 929525DD0395B3F978119D0B /* testUpdateSnapshotCombined1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94A6FCFFED1BDCF9090E5FEC /* testUpdateSnapshotCombined1.1.swift */; };
- 92A3B11C03C0A4636DA3CB62 /* NSBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 599AA3651C4CEE464302CFDD /* NSBezierPath.swift */; };
- 92F3C506872F3E6C289A861F /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A637034F06E7DF38F2339F4 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift */; };
- 9399D33F028C4B110119B641 /* PlistEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3B960E2B6E4AAE0BA50F27B /* PlistEncoder.swift */; };
- 93F5DF248D854C8E353BCA25 /* PlistEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3B960E2B6E4AAE0BA50F27B /* PlistEncoder.swift */; };
- 941758F3457304C1ADDFF981 /* SpriteKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4055310797F1D4813ABD0359 /* SpriteKit.swift */; };
- 956EEAF5750C21E2DB229440 /* testCreateSnapshotWithExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A69D6A4D06EB76C77493EB7 /* testCreateSnapshotWithExtendedDelimiter2.1.swift */; };
- 960AD88ABBE9A6B97A1AC7A6 /* testUpdateSnapshotWithLessLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = A906E6EBBD9DC8CFDA3CF642 /* testUpdateSnapshotWithLessLines.1.swift */; };
- 969985906E267A3F203613F1 /* UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AAFA3BB389939B18F4D7187 /* UIViewController.swift */; };
- 9727BFCBEE9C51BEFB754140 /* View.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F6B5B3AB021FA3CD7519733 /* View.swift */; };
- 9A1B06446DC5BE00E017958D /* NSImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48914A258708D7AC11DC12EF /* NSImage.swift */; };
- 9B0CC95472C5339BC4ABEA4F /* testUpdateSeveralSnapshotsWithLessLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BC721A155DB7D81BE69683 /* testUpdateSeveralSnapshotsWithLessLines.1.swift */; };
- 9BADD5EA602342F6EC050CDE /* SceneKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5580E7AC2CEBEA656780C7A9 /* SceneKit.swift */; };
- 9F78554F1D755960356B9422 /* XCTAttachment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BE8DE5E8A102E1012CD0C95 /* XCTAttachment.swift */; };
- A134AF655C2842F3EAD76075 /* Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10213E0E8B550596F75463C3 /* Wait.swift */; };
- A2662CC188F1C2EC8AA9C264 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CAC8CA2C073A9D03BC22880 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift */; };
- A34DE4C3913FB2141CD0B404 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49C676C30FCAE10DB1773832 /* TestHelpers.swift */; };
- A358EFE9A68B189FDD8A90AA /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAA9C51757FC5DC679F5DC72 /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift */; };
- A59512C2262CEBD543E11397 /* testUpdateSnapshot.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1FE81FC04984B93B0C27FA6 /* testUpdateSnapshot.1.swift */; };
- A61714FF3D02173704FD7E8F /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E7085488C51876C1E9B871C /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift */; };
- A6E03E44FA1D83963C28E304 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CD3B175977519BCF6179FD0 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift */; };
- A8396E19A7C4A35A8FB48C04 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E18803C6CA9CC80FF55033 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift */; };
- A9E8A45449313F3F4B1B4D3F /* Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F479E2BD835B9641B85EB51E /* Internal.swift */; };
- AAE5EED880A834F69554115C /* CALayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96E01FF29B2959DE5FD093FB /* CALayer.swift */; };
- AB307DF4664ECD682782740C /* testWait.1.txt in Resources */ = {isa = PBXBuildFile; fileRef = 53F63F2CD9E9F164EB7AF753 /* testWait.1.txt */; };
- AE77649A377D5328DC91D19B /* AssertSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0B236137C960C05554D4310 /* AssertSnapshot.swift */; };
- AEA906B0259465877DCED2AC /* NSViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB124D18325606D35B7027A6 /* NSViewController.swift */; };
- AF0B20C84F8CFA4231DAA1E5 /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7585E299A8FF3416E005E3FD /* SwiftUIView.swift */; };
- AF4170D746DA3C5F89010291 /* Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58583084B2E2BC023E981D2B /* Data.swift */; };
- B30E8815010C2E79DD90B3C0 /* Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58583084B2E2BC023E981D2B /* Data.swift */; };
- B31F766A012E912D8034B3E2 /* testCreateSnapshotEscapedNewlineLastLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8F1FEF91276E0D2BEFD9BC6 /* testCreateSnapshotEscapedNewlineLastLine.1.swift */; };
- B5DDFD7AB905028533949838 /* Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D7CFCA42A4D2168436F6C1 /* Codable.swift */; };
- B67546FC373990003C3C4D49 /* NSBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 599AA3651C4CEE464302CFDD /* NSBezierPath.swift */; };
- B7C6F1A74C6D9DF70ACC52DB /* UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 810407271A6CB90161DCE6A0 /* UIImage.swift */; };
- BA6099AF5DBC1D12C3066D14 /* String+SpecialCharacters.swift in Sources */ = {isa = PBXBuildFile; fileRef = D49092873A7A5D6DA623E352 /* String+SpecialCharacters.swift */; };
- BA9E7BCC44BCFA7AB29C7057 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A637034F06E7DF38F2339F4 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift */; };
- BC1C30E837022BC96B8707B7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AF3E4E28A1292D02E080C7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift */; };
- BC673F41050B566E6553814F /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E18803C6CA9CC80FF55033 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift */; };
- BD42403C6DDE4A5B453DFA9F /* SnapshotTestingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA789F513A8B1E8EF5BF81E2 /* SnapshotTestingTests.swift */; };
- BF239214620668C79B314F6F /* testUpdateSnapshotWithExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CAC8CA2C073A9D03BC22880 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift */; };
- BF4FD7664E50DA3FC34E91CF /* testUpdateSnapshotWithExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D7D0D81B7E35C6284A3E65 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift */; };
- C0F19173230428932EDD1A78 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = D77BE996AE7868E9B58D6C74 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift */; };
- C164E90DBC39225AA2B264C9 /* WaitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D86810F80142B1A3265C4F74 /* WaitTests.swift */; };
- C48A4BD0534BF1817AF91098 /* Any.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8F831EAAFB97204ECD0B879 /* Any.swift */; };
- C4A256D8B1F38CD5AF69B402 /* testUpdateSnapshotWithLessLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = A906E6EBBD9DC8CFDA3CF642 /* testUpdateSnapshotWithLessLines.1.swift */; };
- C4B756D0EB6C280BE7D365F7 /* SnapshotTestingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA789F513A8B1E8EF5BF81E2 /* SnapshotTestingTests.swift */; };
- C5761C4B323193B5F7BAC9CD /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13AB875AB58FF3BCAC1AA66 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift */; };
- C671702936EE6AF31A2EFAD8 /* testUpdateSnapshotCombined1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94A6FCFFED1BDCF9090E5FEC /* testUpdateSnapshotCombined1.1.swift */; };
- C6EBF0B5043208604D2BA141 /* testWait.1.txt in Resources */ = {isa = PBXBuildFile; fileRef = 53F63F2CD9E9F164EB7AF753 /* testWait.1.txt */; };
- C73FDCC778423902C54A39CF /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EDE232DB652745F05B478F4 /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift */; };
- C774D934C0A4CFDAAB475499 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE91B5904B3F67A3A01610C8 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift */; };
- C7A32C62FABEA6CECB907389 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D7D0D81B7E35C6284A3E65 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift */; };
- C97E2A9B0EC799E08B77B723 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CD3B175977519BCF6179FD0 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift */; };
- C9C12C6C91FB96E02BBA8A8F /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE91B5904B3F67A3A01610C8 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift */; };
- CBC57ED5427F5EBD18FDCEFC /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAA9C51757FC5DC679F5DC72 /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift */; };
- CC1CC535032FA027BC50AB5B /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADACB597E6A3CAC5BFEEFB05 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift */; };
- CE53F597D12C921A3DA2E8B0 /* NSImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48914A258708D7AC11DC12EF /* NSImage.swift */; };
- D08F1EABB0BF974C05E74D8F /* SpriteKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4055310797F1D4813ABD0359 /* SpriteKit.swift */; };
- D3E3E6C974E835048071BCE0 /* SnapshotTesting.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50945BA2653A2A96CFA62431 /* SnapshotTesting.framework */; };
- D3FE132E866B8AF0D5F4C8DF /* testCreateSnapshotWithExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB18BB1F44D13D5C5FE09A6 /* testCreateSnapshotWithExtendedDelimiter1.1.swift */; };
- D5483007C407B1AC42A9E391 /* SceneKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5580E7AC2CEBEA656780C7A9 /* SceneKit.swift */; };
- D5EED6FE1C8F85CE32392066 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49C676C30FCAE10DB1773832 /* TestHelpers.swift */; };
- DAAEB108C97963D4BF3C74E1 /* CGPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F2750685230CC3BC17BDEAB /* CGPath.swift */; };
- DC925700DE66F9134D3E47EA /* String.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04F429C62A87AC95E13E2D78 /* String.swift */; };
- DE888645B9529A2CCDE24580 /* testCreateSnapshotWithExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A69D6A4D06EB76C77493EB7 /* testCreateSnapshotWithExtendedDelimiter2.1.swift */; };
- DFAA125AE62C89E28F9762C0 /* Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58583084B2E2BC023E981D2B /* Data.swift */; };
- E0F979D230DEEF72A03CE976 /* Description.swift in Sources */ = {isa = PBXBuildFile; fileRef = A76261A778A1B8C06EB7E1B4 /* Description.swift */; };
- E120075833931C0E527D5FA6 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A637034F06E7DF38F2339F4 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift */; };
- E15771888A39AB2D4C68F169 /* testCreateSnapshotMultiLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C685ECE195C23560AFD1456 /* testCreateSnapshotMultiLine.1.swift */; };
- E2E1BA4E82EBF5D7E7533485 /* Any.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8F831EAAFB97204ECD0B879 /* Any.swift */; };
- E3E64AA7C25386DE50DB0995 /* CALayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96E01FF29B2959DE5FD093FB /* CALayer.swift */; };
- E4E9D9D29275B05B86B1B35E /* testCreateSnapshotSingleLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47F0BCE5A339D74CD4AE05C2 /* testCreateSnapshotSingleLine.1.swift */; };
- E5EA11B0A1E1194E4285920E /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7585E299A8FF3416E005E3FD /* SwiftUIView.swift */; };
- E66A02C861A316EDB4377C2E /* View.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F6B5B3AB021FA3CD7519733 /* View.swift */; };
- E74DAB4391AD53DABB1B414A /* testUpdateSeveralSnapshotsSwapingLines2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = D77BE996AE7868E9B58D6C74 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift */; };
- E7A986FC4CE72492A5A2AFD7 /* testCreateSnapshotSingleLine.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47F0BCE5A339D74CD4AE05C2 /* testCreateSnapshotSingleLine.1.swift */; };
- EA9437BEC17963D8CA4A201A /* SnapshotTesting.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3BBC3220F45BA5E71F819602 /* SnapshotTesting.framework */; };
- EB96DB74099A6385283A1299 /* SnapshotTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CD2F74288CF52A13C9BB497 /* SnapshotTestCase.swift */; };
- EC4E922DF51C6B2C024A3737 /* PlistEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3B960E2B6E4AAE0BA50F27B /* PlistEncoder.swift */; };
- EC7A25FEF97B3DF1D88F9D3F /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EDE232DB652745F05B478F4 /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift */; };
- ED5DD41ADD51CA352E77A8A7 /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E7085488C51876C1E9B871C /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift */; };
- F091F6AC6DA030FD96240A5E /* String.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04F429C62A87AC95E13E2D78 /* String.swift */; };
- F384274F4593F0BC4E8F94DC /* testCreateSnapshotWithExtendedDelimiter1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB18BB1F44D13D5C5FE09A6 /* testCreateSnapshotWithExtendedDelimiter1.1.swift */; };
- F3883B573DF4CAFADE5968A9 /* testUpdateSeveralSnapshotsWithLessLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BC721A155DB7D81BE69683 /* testUpdateSeveralSnapshotsWithLessLines.1.swift */; };
- F473E43FAB7DD0C5F4D02437 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECEC001D7DB94ECB4F5A2CF9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift */; };
- F4CB3EC3E5D30B217B4D9699 /* Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10213E0E8B550596F75463C3 /* Wait.swift */; };
- F66FB66FCA7B884DA64ADDBE /* Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EEE36D7D9E53E70DABA3996 /* Diff.swift */; };
- FBDFF661DB08CFB75DFB12C3 /* SnapshotTesting.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F9883B60A8B403A39BCF888 /* SnapshotTesting.framework */; };
- FE365D5C0F83CE8459CF77DC /* testUpdateSnapshotWithMoreLines.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0BC8BF7E37686D31F59B9F6 /* testUpdateSnapshotWithMoreLines.1.swift */; };
- FE3FC1518791D7B6DD23D42A /* NSView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9D57E3B929139A0C14AEBA7 /* NSView.swift */; };
- FEA0AF43D267C70A71A27427 /* SnapshotTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CD2F74288CF52A13C9BB497 /* SnapshotTestCase.swift */; };
- FF4A1254A495703F15ECEEEE /* Description.swift in Sources */ = {isa = PBXBuildFile; fileRef = A76261A778A1B8C06EB7E1B4 /* Description.swift */; };
- FFE281ACADD1B2277014BBB6 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift in Sources */ = {isa = PBXBuildFile; fileRef = C13AB875AB58FF3BCAC1AA66 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
- B058BB219909BE43A13145CE /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 675140927BC96A4EABE97C29 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 0E84A93796E47328AAE7C80F;
- remoteInfo = SnapshotTesting_macOS;
- };
- C8CE9EEA7A950707F54ED735 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 675140927BC96A4EABE97C29 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 64F17F6842573B100D61132C;
- remoteInfo = SnapshotTesting_iOS;
- };
- F2C9E0E6668F632DC63D1D6E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 675140927BC96A4EABE97C29 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = CADC8264FEF9AEA34FCCD430;
- remoteInfo = SnapshotTesting_tvOS;
- };
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- 2B39CDAF2782B3AACE8CA703 /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- 5A5F87646FB492693503E9C3 /* SnapshotTesting.framework in Embed Frameworks */,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 75F014F726FEA97EE3834679 /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- 2E3F562DF4A8251E6ED4704C /* SnapshotTesting.framework in Embed Frameworks */,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- DC8037BD56D5406F9A8C69A4 /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- 468C9CBF306D8D8F87BC35AC /* SnapshotTesting.framework in Embed Frameworks */,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 04F429C62A87AC95E13E2D78 /* String.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = String.swift; sourceTree = ""; };
- 0D04C79E5D44F1874BBACB11 /* UIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIView.swift; sourceTree = ""; };
- 0F6B5B3AB021FA3CD7519733 /* View.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = View.swift; sourceTree = ""; };
- 10213E0E8B550596F75463C3 /* Wait.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Wait.swift; sourceTree = ""; };
- 1BD7AFAF336357D01E6E1E05 /* SnapshotTestingTests.xctest */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.cfbundle; path = SnapshotTestingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 1EDE232DB652745F05B478F4 /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithLongerExtendedDelimiter2.1.swift; sourceTree = ""; };
- 1F2750685230CC3BC17BDEAB /* CGPath.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGPath.swift; sourceTree = ""; };
- 1FB18BB1F44D13D5C5FE09A6 /* testCreateSnapshotWithExtendedDelimiter1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithExtendedDelimiter1.1.swift; sourceTree = ""; };
- 2641BBEB31120E3B7FE5EA51 /* UIBezierPath.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIBezierPath.swift; sourceTree = ""; };
- 2A69D6A4D06EB76C77493EB7 /* testCreateSnapshotWithExtendedDelimiter2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithExtendedDelimiter2.1.swift; sourceTree = ""; };
- 32BC721A155DB7D81BE69683 /* testUpdateSeveralSnapshotsWithLessLines.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSeveralSnapshotsWithLessLines.1.swift; sourceTree = ""; };
- 34D7CFCA42A4D2168436F6C1 /* Codable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Codable.swift; sourceTree = ""; };
- 3BBC3220F45BA5E71F819602 /* SnapshotTesting.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SnapshotTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 4055310797F1D4813ABD0359 /* SpriteKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpriteKit.swift; sourceTree = ""; };
- 4796690CC049B52358D7173A /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift; sourceTree = ""; };
- 47F0BCE5A339D74CD4AE05C2 /* testCreateSnapshotSingleLine.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotSingleLine.1.swift; sourceTree = ""; };
- 48914A258708D7AC11DC12EF /* NSImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSImage.swift; sourceTree = ""; };
- 49C676C30FCAE10DB1773832 /* TestHelpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestHelpers.swift; sourceTree = ""; };
- 4BE8DE5E8A102E1012CD0C95 /* XCTAttachment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = XCTAttachment.swift; sourceTree = ""; };
- 4C685ECE195C23560AFD1456 /* testCreateSnapshotMultiLine.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotMultiLine.1.swift; sourceTree = ""; };
- 4E7085488C51876C1E9B871C /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift; sourceTree = ""; };
- 50945BA2653A2A96CFA62431 /* SnapshotTesting.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SnapshotTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 53F63F2CD9E9F164EB7AF753 /* testWait.1.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = testWait.1.txt; sourceTree = ""; };
- 5580E7AC2CEBEA656780C7A9 /* SceneKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneKit.swift; sourceTree = ""; };
- 58583084B2E2BC023E981D2B /* Data.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Data.swift; sourceTree = ""; };
- 599AA3651C4CEE464302CFDD /* NSBezierPath.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSBezierPath.swift; sourceTree = ""; };
- 5AAFA3BB389939B18F4D7187 /* UIViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIViewController.swift; sourceTree = ""; };
- 5CD2F74288CF52A13C9BB497 /* SnapshotTestCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapshotTestCase.swift; sourceTree = ""; };
- 619A277E9C7B85515EC88C84 /* Diffing.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Diffing.swift; sourceTree = ""; };
- 6244D0EADF210BE6E3CE2EE7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; };
- 646ABA578B433C2F4DD4A086 /* Async.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Async.swift; sourceTree = ""; };
- 7585E299A8FF3416E005E3FD /* SwiftUIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftUIView.swift; sourceTree = ""; };
- 810407271A6CB90161DCE6A0 /* UIImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIImage.swift; sourceTree = ""; };
- 8563DC0D660D87E1CDE5D696 /* SnapshotTestingTests.xctest */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.cfbundle; path = SnapshotTestingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 86367454DF23E14D681FDE27 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; };
- 86AF3E4E28A1292D02E080C7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSeveralSnapshotsSwapingLines1.1.swift; sourceTree = ""; };
- 8A637034F06E7DF38F2339F4 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift; sourceTree = ""; };
- 8EEE36D7D9E53E70DABA3996 /* Diff.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Diff.swift; sourceTree = ""; };
- 8F9883B60A8B403A39BCF888 /* SnapshotTesting.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SnapshotTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 94A6FCFFED1BDCF9090E5FEC /* testUpdateSnapshotCombined1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotCombined1.1.swift; sourceTree = ""; };
- 96E01FF29B2959DE5FD093FB /* CALayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CALayer.swift; sourceTree = ""; };
- 9CAC8CA2C073A9D03BC22880 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithExtendedDelimiter2.1.swift; sourceTree = ""; };
- 9CD3B175977519BCF6179FD0 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift; sourceTree = ""; };
- 9D7D5B93AE097C0B92B78931 /* Snapshotting.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Snapshotting.swift; sourceTree = ""; };
- A0B236137C960C05554D4310 /* AssertSnapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssertSnapshot.swift; sourceTree = ""; };
- A0BC8BF7E37686D31F59B9F6 /* testUpdateSnapshotWithMoreLines.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithMoreLines.1.swift; sourceTree = ""; };
- A76261A778A1B8C06EB7E1B4 /* Description.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Description.swift; sourceTree = ""; };
- A906E6EBBD9DC8CFDA3CF642 /* testUpdateSnapshotWithLessLines.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithLessLines.1.swift; sourceTree = ""; };
- AA79A05ABAE4F4EAF9E9F1E4 /* SnapshotTestingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SnapshotTestingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- AA7A398EA6B5594232933158 /* URLRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLRequest.swift; sourceTree = ""; };
- ADACB597E6A3CAC5BFEEFB05 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithShorterExtendedDelimiter2.1.swift; sourceTree = ""; };
- B843712AB555B46BA6E4EC2A /* CaseIterable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CaseIterable.swift; sourceTree = ""; };
- B8F1FEF91276E0D2BEFD9BC6 /* testCreateSnapshotEscapedNewlineLastLine.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotEscapedNewlineLastLine.1.swift; sourceTree = ""; };
- C13AB875AB58FF3BCAC1AA66 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift; sourceTree = ""; };
- CB124D18325606D35B7027A6 /* NSViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSViewController.swift; sourceTree = ""; };
- D1FE81FC04984B93B0C27FA6 /* testUpdateSnapshot.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshot.1.swift; sourceTree = ""; };
- D3B960E2B6E4AAE0BA50F27B /* PlistEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlistEncoder.swift; sourceTree = ""; };
- D49092873A7A5D6DA623E352 /* String+SpecialCharacters.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+SpecialCharacters.swift"; sourceTree = ""; };
- D77BE996AE7868E9B58D6C74 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSeveralSnapshotsSwapingLines2.1.swift; sourceTree = ""; };
- D86810F80142B1A3265C4F74 /* WaitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WaitTests.swift; sourceTree = ""; };
- DAA9C51757FC5DC679F5DC72 /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithLongerExtendedDelimiter1.1.swift; sourceTree = ""; };
- E1E18803C6CA9CC80FF55033 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift; sourceTree = ""; };
- E9D57E3B929139A0C14AEBA7 /* NSView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSView.swift; sourceTree = ""; };
- EA789F513A8B1E8EF5BF81E2 /* SnapshotTestingTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapshotTestingTests.swift; sourceTree = ""; };
- ECEC001D7DB94ECB4F5A2CF9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSeveralSnapshotsWithMoreLines.1.swift; sourceTree = ""; };
- EE91B5904B3F67A3A01610C8 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testCreateSnapshotWithShorterExtendedDelimiter1.1.swift; sourceTree = ""; };
- F479E2BD835B9641B85EB51E /* Internal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Internal.swift; sourceTree = ""; };
- F4D7D0D81B7E35C6284A3E65 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = testUpdateSnapshotWithExtendedDelimiter1.1.swift; sourceTree = ""; };
- F6D3BC50BC4692DC6D9FAE0F /* InlineSnapshotTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InlineSnapshotTests.swift; sourceTree = ""; };
- F8F831EAAFB97204ECD0B879 /* Any.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Any.swift; sourceTree = ""; };
- FD800FD3282956340AD7706A /* AssertInlineSnapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssertInlineSnapshot.swift; sourceTree = ""; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 1F992A9F69421CE0653EFBE5 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- EA9437BEC17963D8CA4A201A /* SnapshotTesting.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 996FEA889951F6F3D1BF06C4 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- FBDFF661DB08CFB75DFB12C3 /* SnapshotTesting.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BAE83A5007FC62993054C460 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- D3E3E6C974E835048071BCE0 /* SnapshotTesting.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 0270B4FD1010850D7D1B908B /* Products */ = {
- isa = PBXGroup;
- children = (
- 50945BA2653A2A96CFA62431 /* SnapshotTesting.framework */,
- 8F9883B60A8B403A39BCF888 /* SnapshotTesting.framework */,
- 3BBC3220F45BA5E71F819602 /* SnapshotTesting.framework */,
- 8563DC0D660D87E1CDE5D696 /* SnapshotTestingTests.xctest */,
- AA79A05ABAE4F4EAF9E9F1E4 /* SnapshotTestingTests.xctest */,
- 1BD7AFAF336357D01E6E1E05 /* SnapshotTestingTests.xctest */,
- );
- name = Products;
- sourceTree = "";
- };
- 25CB6D7740D797F781E85C43 /* SnapshotTesting */ = {
- isa = PBXGroup;
- children = (
- FD800FD3282956340AD7706A /* AssertInlineSnapshot.swift */,
- A0B236137C960C05554D4310 /* AssertSnapshot.swift */,
- 646ABA578B433C2F4DD4A086 /* Async.swift */,
- 8EEE36D7D9E53E70DABA3996 /* Diff.swift */,
- 619A277E9C7B85515EC88C84 /* Diffing.swift */,
- 5CD2F74288CF52A13C9BB497 /* SnapshotTestCase.swift */,
- 9D7D5B93AE097C0B92B78931 /* Snapshotting.swift */,
- D37322FEADE9539AF927F08C /* Common */,
- 5768A55D77F19D897206FF9F /* Extensions */,
- F9BB85DCB605867FAE215944 /* Snapshotting */,
- );
- path = SnapshotTesting;
- sourceTree = "";
- };
- 26008978BB6A3376BB57B01E /* InlineSnapshotTests */ = {
- isa = PBXGroup;
- children = (
- B8F1FEF91276E0D2BEFD9BC6 /* testCreateSnapshotEscapedNewlineLastLine.1.swift */,
- 4C685ECE195C23560AFD1456 /* testCreateSnapshotMultiLine.1.swift */,
- 47F0BCE5A339D74CD4AE05C2 /* testCreateSnapshotSingleLine.1.swift */,
- 1FB18BB1F44D13D5C5FE09A6 /* testCreateSnapshotWithExtendedDelimiter1.1.swift */,
- 2A69D6A4D06EB76C77493EB7 /* testCreateSnapshotWithExtendedDelimiter2.1.swift */,
- C13AB875AB58FF3BCAC1AA66 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift */,
- 8A637034F06E7DF38F2339F4 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift */,
- DAA9C51757FC5DC679F5DC72 /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift */,
- 1EDE232DB652745F05B478F4 /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift */,
- EE91B5904B3F67A3A01610C8 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift */,
- ADACB597E6A3CAC5BFEEFB05 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift */,
- 86AF3E4E28A1292D02E080C7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift */,
- D77BE996AE7868E9B58D6C74 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift */,
- 32BC721A155DB7D81BE69683 /* testUpdateSeveralSnapshotsWithLessLines.1.swift */,
- ECEC001D7DB94ECB4F5A2CF9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift */,
- D1FE81FC04984B93B0C27FA6 /* testUpdateSnapshot.1.swift */,
- 94A6FCFFED1BDCF9090E5FEC /* testUpdateSnapshotCombined1.1.swift */,
- F4D7D0D81B7E35C6284A3E65 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift */,
- 9CAC8CA2C073A9D03BC22880 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift */,
- A906E6EBBD9DC8CFDA3CF642 /* testUpdateSnapshotWithLessLines.1.swift */,
- E1E18803C6CA9CC80FF55033 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift */,
- 4E7085488C51876C1E9B871C /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift */,
- A0BC8BF7E37686D31F59B9F6 /* testUpdateSnapshotWithMoreLines.1.swift */,
- 9CD3B175977519BCF6179FD0 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift */,
- 4796690CC049B52358D7173A /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift */,
- );
- path = InlineSnapshotTests;
- sourceTree = "";
- };
- 4030632E93C44B22EBB1A63C /* WaitTests */ = {
- isa = PBXGroup;
- children = (
- 53F63F2CD9E9F164EB7AF753 /* testWait.1.txt */,
- );
- path = WaitTests;
- sourceTree = "";
- };
- 56185AD4FE1BBC443C9CFDDE = {
- isa = PBXGroup;
- children = (
- 9CB41CD4EBF4FCC9BF81E4E6 /* Sources */,
- E65E21E7F02E29FEBA38D197 /* Tests */,
- 0270B4FD1010850D7D1B908B /* Products */,
- );
- indentWidth = 2;
- sourceTree = "";
- tabWidth = 2;
- usesTabs = 0;
- };
- 5768A55D77F19D897206FF9F /* Extensions */ = {
- isa = PBXGroup;
- children = (
- 10213E0E8B550596F75463C3 /* Wait.swift */,
- );
- path = Extensions;
- sourceTree = "";
- };
- 5F415AF65AF138E223C5D650 /* SnapshotTestingTests */ = {
- isa = PBXGroup;
- children = (
- F6D3BC50BC4692DC6D9FAE0F /* InlineSnapshotTests.swift */,
- EA789F513A8B1E8EF5BF81E2 /* SnapshotTestingTests.swift */,
- 49C676C30FCAE10DB1773832 /* TestHelpers.swift */,
- D86810F80142B1A3265C4F74 /* WaitTests.swift */,
- 73F45D5CF5F40D4A7FB34FEC /* __Snapshots__ */,
- );
- path = SnapshotTestingTests;
- sourceTree = "";
- };
- 73F45D5CF5F40D4A7FB34FEC /* __Snapshots__ */ = {
- isa = PBXGroup;
- children = (
- 26008978BB6A3376BB57B01E /* InlineSnapshotTests */,
- 4030632E93C44B22EBB1A63C /* WaitTests */,
- );
- path = __Snapshots__;
- sourceTree = "";
- };
- 9CB41CD4EBF4FCC9BF81E4E6 /* Sources */ = {
- isa = PBXGroup;
- children = (
- 86367454DF23E14D681FDE27 /* Info.plist */,
- 25CB6D7740D797F781E85C43 /* SnapshotTesting */,
- );
- path = Sources;
- sourceTree = "";
- };
- D37322FEADE9539AF927F08C /* Common */ = {
- isa = PBXGroup;
- children = (
- F479E2BD835B9641B85EB51E /* Internal.swift */,
- D3B960E2B6E4AAE0BA50F27B /* PlistEncoder.swift */,
- D49092873A7A5D6DA623E352 /* String+SpecialCharacters.swift */,
- 0F6B5B3AB021FA3CD7519733 /* View.swift */,
- 4BE8DE5E8A102E1012CD0C95 /* XCTAttachment.swift */,
- );
- path = Common;
- sourceTree = "";
- };
- E65E21E7F02E29FEBA38D197 /* Tests */ = {
- isa = PBXGroup;
- children = (
- 6244D0EADF210BE6E3CE2EE7 /* Info.plist */,
- 5F415AF65AF138E223C5D650 /* SnapshotTestingTests */,
- );
- path = Tests;
- sourceTree = "";
- };
- F9BB85DCB605867FAE215944 /* Snapshotting */ = {
- isa = PBXGroup;
- children = (
- F8F831EAAFB97204ECD0B879 /* Any.swift */,
- 96E01FF29B2959DE5FD093FB /* CALayer.swift */,
- B843712AB555B46BA6E4EC2A /* CaseIterable.swift */,
- 1F2750685230CC3BC17BDEAB /* CGPath.swift */,
- 34D7CFCA42A4D2168436F6C1 /* Codable.swift */,
- 58583084B2E2BC023E981D2B /* Data.swift */,
- A76261A778A1B8C06EB7E1B4 /* Description.swift */,
- 599AA3651C4CEE464302CFDD /* NSBezierPath.swift */,
- 48914A258708D7AC11DC12EF /* NSImage.swift */,
- E9D57E3B929139A0C14AEBA7 /* NSView.swift */,
- CB124D18325606D35B7027A6 /* NSViewController.swift */,
- 5580E7AC2CEBEA656780C7A9 /* SceneKit.swift */,
- 4055310797F1D4813ABD0359 /* SpriteKit.swift */,
- 04F429C62A87AC95E13E2D78 /* String.swift */,
- 7585E299A8FF3416E005E3FD /* SwiftUIView.swift */,
- 2641BBEB31120E3B7FE5EA51 /* UIBezierPath.swift */,
- 810407271A6CB90161DCE6A0 /* UIImage.swift */,
- 0D04C79E5D44F1874BBACB11 /* UIView.swift */,
- 5AAFA3BB389939B18F4D7187 /* UIViewController.swift */,
- AA7A398EA6B5594232933158 /* URLRequest.swift */,
- );
- path = Snapshotting;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 0E84A93796E47328AAE7C80F /* SnapshotTesting_macOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 67DF8F8EE0829CEC5997C47A /* Build configuration list for PBXNativeTarget "SnapshotTesting_macOS" */;
- buildPhases = (
- 4372F9413B9579D2EE893177 /* Sources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = SnapshotTesting_macOS;
- productName = SnapshotTesting_macOS;
- productReference = 8F9883B60A8B403A39BCF888 /* SnapshotTesting.framework */;
- productType = "com.apple.product-type.framework";
- };
- 4D351C54668E3B5721A83752 /* SnapshotTestingTests_macOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 8C8E718FA8686D70ECC68A56 /* Build configuration list for PBXNativeTarget "SnapshotTestingTests_macOS" */;
- buildPhases = (
- 96B1767B728E93E434569005 /* Sources */,
- 831B77CE6304A37DE6F5DD06 /* Resources */,
- 996FEA889951F6F3D1BF06C4 /* Frameworks */,
- 75F014F726FEA97EE3834679 /* Embed Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- 4E93E054EDEBD6C7A0334C86 /* PBXTargetDependency */,
- );
- name = SnapshotTestingTests_macOS;
- productName = SnapshotTestingTests_macOS;
- productReference = AA79A05ABAE4F4EAF9E9F1E4 /* SnapshotTestingTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 64F17F6842573B100D61132C /* SnapshotTesting_iOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 53535ECD7578718495DC8DA7 /* Build configuration list for PBXNativeTarget "SnapshotTesting_iOS" */;
- buildPhases = (
- 5F135DB42A0325BA355D5E92 /* Sources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = SnapshotTesting_iOS;
- productName = SnapshotTesting_iOS;
- productReference = 50945BA2653A2A96CFA62431 /* SnapshotTesting.framework */;
- productType = "com.apple.product-type.framework";
- };
- 6C1340F5ED556C5C9B3AE657 /* SnapshotTestingTests_iOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 43416B28BD58085FC3F324D7 /* Build configuration list for PBXNativeTarget "SnapshotTestingTests_iOS" */;
- buildPhases = (
- D22C51E62F912D35132DAC16 /* Sources */,
- 27C674611891250B5FD37163 /* Resources */,
- BAE83A5007FC62993054C460 /* Frameworks */,
- 2B39CDAF2782B3AACE8CA703 /* Embed Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- B44D3AFF3DE7F305DDB0D75A /* PBXTargetDependency */,
- );
- name = SnapshotTestingTests_iOS;
- productName = SnapshotTestingTests_iOS;
- productReference = 8563DC0D660D87E1CDE5D696 /* SnapshotTestingTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- A6C32CCDA022766883A434A0 /* SnapshotTestingTests_tvOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 6EDB60BF7A99F33EB1FD5F4A /* Build configuration list for PBXNativeTarget "SnapshotTestingTests_tvOS" */;
- buildPhases = (
- 9F9167B1721E8D97594909DD /* Sources */,
- F1380D325510ECBD9CC05A7C /* Resources */,
- 1F992A9F69421CE0653EFBE5 /* Frameworks */,
- DC8037BD56D5406F9A8C69A4 /* Embed Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- B8C2474BDF97808466174913 /* PBXTargetDependency */,
- );
- name = SnapshotTestingTests_tvOS;
- productName = SnapshotTestingTests_tvOS;
- productReference = 1BD7AFAF336357D01E6E1E05 /* SnapshotTestingTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- CADC8264FEF9AEA34FCCD430 /* SnapshotTesting_tvOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 45828BACEEB05CF377BFF48C /* Build configuration list for PBXNativeTarget "SnapshotTesting_tvOS" */;
- buildPhases = (
- D12C0EDAF93FFF3CF1F97410 /* Sources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = SnapshotTesting_tvOS;
- productName = SnapshotTesting_tvOS;
- productReference = 3BBC3220F45BA5E71F819602 /* SnapshotTesting.framework */;
- productType = "com.apple.product-type.framework";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 675140927BC96A4EABE97C29 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1020;
- TargetAttributes = {
- };
- };
- buildConfigurationList = D9A4BF45876C849A308801A2 /* Build configuration list for PBXProject "SnapshotTesting" */;
- compatibilityVersion = "Xcode 10.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- );
- mainGroup = 56185AD4FE1BBC443C9CFDDE;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 6C1340F5ED556C5C9B3AE657 /* SnapshotTestingTests_iOS */,
- 4D351C54668E3B5721A83752 /* SnapshotTestingTests_macOS */,
- A6C32CCDA022766883A434A0 /* SnapshotTestingTests_tvOS */,
- 64F17F6842573B100D61132C /* SnapshotTesting_iOS */,
- 0E84A93796E47328AAE7C80F /* SnapshotTesting_macOS */,
- CADC8264FEF9AEA34FCCD430 /* SnapshotTesting_tvOS */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 27C674611891250B5FD37163 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1247D995CD603F65D31746C0 /* testWait.1.txt in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 831B77CE6304A37DE6F5DD06 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C6EBF0B5043208604D2BA141 /* testWait.1.txt in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F1380D325510ECBD9CC05A7C /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- AB307DF4664ECD682782740C /* testWait.1.txt in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 4372F9413B9579D2EE893177 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 87D3745DBD172E3E6427190F /* Any.swift in Sources */,
- 6CAB0714112F5AAE5D0FBD23 /* AssertInlineSnapshot.swift in Sources */,
- 52B7C3800F08E80D7BA8600D /* AssertSnapshot.swift in Sources */,
- 1420B1BBC10CFF4D03C8AA67 /* Async.swift in Sources */,
- 2706E738D0BF540260D1F776 /* CALayer.swift in Sources */,
- 1AF02DC6F0CD8B36DD2CEEB5 /* CGPath.swift in Sources */,
- 6E50CE7921A0D62C78E85637 /* CaseIterable.swift in Sources */,
- 8C4AC3C0BAAA1275BF205637 /* Codable.swift in Sources */,
- DFAA125AE62C89E28F9762C0 /* Data.swift in Sources */,
- E0F979D230DEEF72A03CE976 /* Description.swift in Sources */,
- 0FA2819099AC626FF01F2E97 /* Diff.swift in Sources */,
- 038184DBCE934EA8E69E075B /* Diffing.swift in Sources */,
- 4A95F6990FFA0B2F52CAC260 /* Internal.swift in Sources */,
- 92A3B11C03C0A4636DA3CB62 /* NSBezierPath.swift in Sources */,
- 785ECE356ECA7C1564D99932 /* NSImage.swift in Sources */,
- 3FDA79CD7E2D26217A5132DA /* NSView.swift in Sources */,
- 08C8278A038756916D597D02 /* NSViewController.swift in Sources */,
- 9399D33F028C4B110119B641 /* PlistEncoder.swift in Sources */,
- D5483007C407B1AC42A9E391 /* SceneKit.swift in Sources */,
- EB96DB74099A6385283A1299 /* SnapshotTestCase.swift in Sources */,
- 4DCF3527100FE3577AB7074B /* Snapshotting.swift in Sources */,
- 648E0BF61716417CE60ADF13 /* SpriteKit.swift in Sources */,
- 8BDA8D067C1A9BDD7EFB1E78 /* String+SpecialCharacters.swift in Sources */,
- F091F6AC6DA030FD96240A5E /* String.swift in Sources */,
- AF0B20C84F8CFA4231DAA1E5 /* SwiftUIView.swift in Sources */,
- 42EEB5E183FA787232DCF756 /* UIBezierPath.swift in Sources */,
- 2D9BA837D802B7347244178B /* UIImage.swift in Sources */,
- 3CB93CF15AA49A2CB461D45E /* UIView.swift in Sources */,
- 1ABB68DCE39CE794B07296A7 /* UIViewController.swift in Sources */,
- 30413A9E862B77B868A57B65 /* URLRequest.swift in Sources */,
- E66A02C861A316EDB4377C2E /* View.swift in Sources */,
- F4CB3EC3E5D30B217B4D9699 /* Wait.swift in Sources */,
- 4521C5D2FE3CE1784C44A210 /* XCTAttachment.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 5F135DB42A0325BA355D5E92 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- E2E1BA4E82EBF5D7E7533485 /* Any.swift in Sources */,
- 90555C6EB17BD465E901043A /* AssertInlineSnapshot.swift in Sources */,
- AE77649A377D5328DC91D19B /* AssertSnapshot.swift in Sources */,
- 29602B6DD2A43E1C13DF1D42 /* Async.swift in Sources */,
- AAE5EED880A834F69554115C /* CALayer.swift in Sources */,
- 87B0D39F14038FF162ADA25A /* CGPath.swift in Sources */,
- 620758875CDFB7D9C6442A75 /* CaseIterable.swift in Sources */,
- B5DDFD7AB905028533949838 /* Codable.swift in Sources */,
- AF4170D746DA3C5F89010291 /* Data.swift in Sources */,
- FF4A1254A495703F15ECEEEE /* Description.swift in Sources */,
- F66FB66FCA7B884DA64ADDBE /* Diff.swift in Sources */,
- 3E5C7662C80553ED51ED655B /* Diffing.swift in Sources */,
- A9E8A45449313F3F4B1B4D3F /* Internal.swift in Sources */,
- 27E2E64971E40DB5E6E84BB6 /* NSBezierPath.swift in Sources */,
- 9A1B06446DC5BE00E017958D /* NSImage.swift in Sources */,
- 345FB3E29989E8B1DA53617A /* NSView.swift in Sources */,
- AEA906B0259465877DCED2AC /* NSViewController.swift in Sources */,
- EC4E922DF51C6B2C024A3737 /* PlistEncoder.swift in Sources */,
- 06BA09CBE16A002564A3D098 /* SceneKit.swift in Sources */,
- 42BCD8FC5433734A7BD80486 /* SnapshotTestCase.swift in Sources */,
- 066041367BD8A6246C1F47F7 /* Snapshotting.swift in Sources */,
- 941758F3457304C1ADDFF981 /* SpriteKit.swift in Sources */,
- BA6099AF5DBC1D12C3066D14 /* String+SpecialCharacters.swift in Sources */,
- 1A0FB107B2820F9B33EFE2BB /* String.swift in Sources */,
- 7A113ED6F1950924A9012428 /* SwiftUIView.swift in Sources */,
- 4CF683A5FA0EDF2C6ABC8B10 /* UIBezierPath.swift in Sources */,
- 0C80A6C3FD6C62FDAC4123B3 /* UIImage.swift in Sources */,
- 6630A021629D13CD012A62FD /* UIView.swift in Sources */,
- 65ED4CF70D09F51DAD4C692A /* UIViewController.swift in Sources */,
- 7B9F0DFC589C66887A37F0FB /* URLRequest.swift in Sources */,
- 9727BFCBEE9C51BEFB754140 /* View.swift in Sources */,
- 3919A4BA4A0D247767997FB6 /* Wait.swift in Sources */,
- 3079CF3C05E4FCE8F29053AC /* XCTAttachment.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 96B1767B728E93E434569005 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 76D4B4FEF767C6E546A261D1 /* InlineSnapshotTests.swift in Sources */,
- 8442C5AE49466F0F0CB6BD9C /* SnapshotTestingTests.swift in Sources */,
- D5EED6FE1C8F85CE32392066 /* TestHelpers.swift in Sources */,
- 4D36F6FD7EC4C9D5EFEB1B54 /* WaitTests.swift in Sources */,
- 133A694B28958DA656061EC8 /* testCreateSnapshotEscapedNewlineLastLine.1.swift in Sources */,
- 19CAE304A06A92323E7C225C /* testCreateSnapshotMultiLine.1.swift in Sources */,
- E7A986FC4CE72492A5A2AFD7 /* testCreateSnapshotSingleLine.1.swift in Sources */,
- F384274F4593F0BC4E8F94DC /* testCreateSnapshotWithExtendedDelimiter1.1.swift in Sources */,
- DE888645B9529A2CCDE24580 /* testCreateSnapshotWithExtendedDelimiter2.1.swift in Sources */,
- C5761C4B323193B5F7BAC9CD /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift in Sources */,
- 92F3C506872F3E6C289A861F /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift in Sources */,
- A358EFE9A68B189FDD8A90AA /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */,
- C73FDCC778423902C54A39CF /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */,
- C774D934C0A4CFDAAB475499 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */,
- 3375935EAD0B4B587E08D009 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */,
- BC1C30E837022BC96B8707B7 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift in Sources */,
- E74DAB4391AD53DABB1B414A /* testUpdateSeveralSnapshotsSwapingLines2.1.swift in Sources */,
- F3883B573DF4CAFADE5968A9 /* testUpdateSeveralSnapshotsWithLessLines.1.swift in Sources */,
- 65D67E27AE9B3103D64017F9 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift in Sources */,
- A59512C2262CEBD543E11397 /* testUpdateSnapshot.1.swift in Sources */,
- C671702936EE6AF31A2EFAD8 /* testUpdateSnapshotCombined1.1.swift in Sources */,
- C7A32C62FABEA6CECB907389 /* testUpdateSnapshotWithExtendedDelimiter1.1.swift in Sources */,
- BF239214620668C79B314F6F /* testUpdateSnapshotWithExtendedDelimiter2.1.swift in Sources */,
- 0A2CA2628AD949722548B375 /* testUpdateSnapshotWithLessLines.1.swift in Sources */,
- BC673F41050B566E6553814F /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */,
- A61714FF3D02173704FD7E8F /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */,
- 68106F33F94393CDE2A8357B /* testUpdateSnapshotWithMoreLines.1.swift in Sources */,
- 4D153EF65CD179C5359C088C /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */,
- 7866CC909D70D49D1EEF9F45 /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 9F9167B1721E8D97594909DD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 56A5360AAD7ADF0AF82BCA67 /* InlineSnapshotTests.swift in Sources */,
- C4B756D0EB6C280BE7D365F7 /* SnapshotTestingTests.swift in Sources */,
- 5009B0AB4DFBBFCAF5BBFD72 /* TestHelpers.swift in Sources */,
- 7EDE9C3850EC4AF1100E6AB7 /* WaitTests.swift in Sources */,
- B31F766A012E912D8034B3E2 /* testCreateSnapshotEscapedNewlineLastLine.1.swift in Sources */,
- 04B16C816033F9BAC3D9D3C7 /* testCreateSnapshotMultiLine.1.swift in Sources */,
- E4E9D9D29275B05B86B1B35E /* testCreateSnapshotSingleLine.1.swift in Sources */,
- 077786494E140FE190E446CF /* testCreateSnapshotWithExtendedDelimiter1.1.swift in Sources */,
- 0A587A871DEED36F70A5183E /* testCreateSnapshotWithExtendedDelimiter2.1.swift in Sources */,
- 379DF6110162DE4D59CD48FB /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift in Sources */,
- BA9E7BCC44BCFA7AB29C7057 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift in Sources */,
- CBC57ED5427F5EBD18FDCEFC /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */,
- 0B77E68275BFA9F7C6C4A7DB /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */,
- C9C12C6C91FB96E02BBA8A8F /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */,
- 53BA9B309A5C142DF43C7102 /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */,
- 1579ACF34130151145F8B7F9 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift in Sources */,
- C0F19173230428932EDD1A78 /* testUpdateSeveralSnapshotsSwapingLines2.1.swift in Sources */,
- 69CC956C57E7C75D4518E32B /* testUpdateSeveralSnapshotsWithLessLines.1.swift in Sources */,
- 63F5F347F14D6F8997D29867 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift in Sources */,
- 5C9B450582B24CD89D7F9977 /* testUpdateSnapshot.1.swift in Sources */,
- 38E93DA9BA1639327AEEA89E /* testUpdateSnapshotCombined1.1.swift in Sources */,
- 09A4B43A6919A2A01B5DF5DC /* testUpdateSnapshotWithExtendedDelimiter1.1.swift in Sources */,
- A2662CC188F1C2EC8AA9C264 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift in Sources */,
- C4A256D8B1F38CD5AF69B402 /* testUpdateSnapshotWithLessLines.1.swift in Sources */,
- 07D9C5BEF5652BFBA04FD6AF /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */,
- ED5DD41ADD51CA352E77A8A7 /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */,
- 0245D418EA6D8A21A0BF971E /* testUpdateSnapshotWithMoreLines.1.swift in Sources */,
- C97E2A9B0EC799E08B77B723 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */,
- 2A062189ED2218A03B1CB3CB /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- D12C0EDAF93FFF3CF1F97410 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C48A4BD0534BF1817AF91098 /* Any.swift in Sources */,
- 56551E9E2E7A3DCF41C966F1 /* AssertInlineSnapshot.swift in Sources */,
- 6C48EAD7C6D1441EE12F907B /* AssertSnapshot.swift in Sources */,
- 45FAA85BB7198113155FD27F /* Async.swift in Sources */,
- E3E64AA7C25386DE50DB0995 /* CALayer.swift in Sources */,
- DAAEB108C97963D4BF3C74E1 /* CGPath.swift in Sources */,
- 28106F59B265148F2CB38B5B /* CaseIterable.swift in Sources */,
- 5C7623E2C040A67AEF4BE329 /* Codable.swift in Sources */,
- B30E8815010C2E79DD90B3C0 /* Data.swift in Sources */,
- 42B1EA1619E926A4391D176F /* Description.swift in Sources */,
- 9068EBD3D0BB87B3CB76FFBA /* Diff.swift in Sources */,
- 6BCCCC6BAA13CE8DF37B92C7 /* Diffing.swift in Sources */,
- 4E2EC852FBB3BF0C7E9D8AB0 /* Internal.swift in Sources */,
- B67546FC373990003C3C4D49 /* NSBezierPath.swift in Sources */,
- CE53F597D12C921A3DA2E8B0 /* NSImage.swift in Sources */,
- FE3FC1518791D7B6DD23D42A /* NSView.swift in Sources */,
- 8C428A751E6342E2CE46E4CB /* NSViewController.swift in Sources */,
- 93F5DF248D854C8E353BCA25 /* PlistEncoder.swift in Sources */,
- 9BADD5EA602342F6EC050CDE /* SceneKit.swift in Sources */,
- FEA0AF43D267C70A71A27427 /* SnapshotTestCase.swift in Sources */,
- 6839408A3D220CC5196456BC /* Snapshotting.swift in Sources */,
- D08F1EABB0BF974C05E74D8F /* SpriteKit.swift in Sources */,
- 10F68BDF40D553B893C6CB1E /* String+SpecialCharacters.swift in Sources */,
- DC925700DE66F9134D3E47EA /* String.swift in Sources */,
- E5EA11B0A1E1194E4285920E /* SwiftUIView.swift in Sources */,
- 5E7F4795AFED0D8D4E1D75A6 /* UIBezierPath.swift in Sources */,
- B7C6F1A74C6D9DF70ACC52DB /* UIImage.swift in Sources */,
- 436C10BC8313288D84733DC5 /* UIView.swift in Sources */,
- 969985906E267A3F203613F1 /* UIViewController.swift in Sources */,
- 573488A1374FE9CD280A0BEE /* URLRequest.swift in Sources */,
- 393181237190376E8A9D300E /* View.swift in Sources */,
- A134AF655C2842F3EAD76075 /* Wait.swift in Sources */,
- 9F78554F1D755960356B9422 /* XCTAttachment.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- D22C51E62F912D35132DAC16 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2336ECD86073FAB4CFC26CC2 /* InlineSnapshotTests.swift in Sources */,
- BD42403C6DDE4A5B453DFA9F /* SnapshotTestingTests.swift in Sources */,
- A34DE4C3913FB2141CD0B404 /* TestHelpers.swift in Sources */,
- C164E90DBC39225AA2B264C9 /* WaitTests.swift in Sources */,
- 1D24E76D17FCE8E61B1F0387 /* testCreateSnapshotEscapedNewlineLastLine.1.swift in Sources */,
- E15771888A39AB2D4C68F169 /* testCreateSnapshotMultiLine.1.swift in Sources */,
- 185A126A1D7C76FE910C6A2F /* testCreateSnapshotSingleLine.1.swift in Sources */,
- D3FE132E866B8AF0D5F4C8DF /* testCreateSnapshotWithExtendedDelimiter1.1.swift in Sources */,
- 956EEAF5750C21E2DB229440 /* testCreateSnapshotWithExtendedDelimiter2.1.swift in Sources */,
- FFE281ACADD1B2277014BBB6 /* testCreateSnapshotWithExtendedDelimiterSingleLine1.1.swift in Sources */,
- E120075833931C0E527D5FA6 /* testCreateSnapshotWithExtendedDelimiterSingleLine2.1.swift in Sources */,
- 789E86CBD26991DA22BA051A /* testCreateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */,
- EC7A25FEF97B3DF1D88F9D3F /* testCreateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */,
- 04DCB36E9801AE497F2FA206 /* testCreateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */,
- CC1CC535032FA027BC50AB5B /* testCreateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */,
- 5F4CD3628962897AC0D56799 /* testUpdateSeveralSnapshotsSwapingLines1.1.swift in Sources */,
- 38E662FA1D63541B94FDA00F /* testUpdateSeveralSnapshotsSwapingLines2.1.swift in Sources */,
- 9B0CC95472C5339BC4ABEA4F /* testUpdateSeveralSnapshotsWithLessLines.1.swift in Sources */,
- F473E43FAB7DD0C5F4D02437 /* testUpdateSeveralSnapshotsWithMoreLines.1.swift in Sources */,
- 7C48053A90BCB45B35C432F4 /* testUpdateSnapshot.1.swift in Sources */,
- 929525DD0395B3F978119D0B /* testUpdateSnapshotCombined1.1.swift in Sources */,
- BF4FD7664E50DA3FC34E91CF /* testUpdateSnapshotWithExtendedDelimiter1.1.swift in Sources */,
- 12409E35EBC6780D668171B3 /* testUpdateSnapshotWithExtendedDelimiter2.1.swift in Sources */,
- 960AD88ABBE9A6B97A1AC7A6 /* testUpdateSnapshotWithLessLines.1.swift in Sources */,
- A8396E19A7C4A35A8FB48C04 /* testUpdateSnapshotWithLongerExtendedDelimiter1.1.swift in Sources */,
- 1FF2453D55C601BDC68646D9 /* testUpdateSnapshotWithLongerExtendedDelimiter2.1.swift in Sources */,
- FE365D5C0F83CE8459CF77DC /* testUpdateSnapshotWithMoreLines.1.swift in Sources */,
- A6E03E44FA1D83963C28E304 /* testUpdateSnapshotWithShorterExtendedDelimiter1.1.swift in Sources */,
- 68D1851C9FC695A684155D60 /* testUpdateSnapshotWithShorterExtendedDelimiter2.1.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
- 4E93E054EDEBD6C7A0334C86 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 0E84A93796E47328AAE7C80F /* SnapshotTesting_macOS */;
- targetProxy = B058BB219909BE43A13145CE /* PBXContainerItemProxy */;
- };
- B44D3AFF3DE7F305DDB0D75A /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 64F17F6842573B100D61132C /* SnapshotTesting_iOS */;
- targetProxy = C8CE9EEA7A950707F54ED735 /* PBXContainerItemProxy */;
- };
- B8C2474BDF97808466174913 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = CADC8264FEF9AEA34FCCD430 /* SnapshotTesting_tvOS */;
- targetProxy = F2C9E0E6668F632DC63D1D6E /* PBXContainerItemProxy */;
- };
-/* End PBXTargetDependency section */
-
-/* Begin XCBuildConfiguration section */
- 0599123409D3A74965DD7DF5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- INFOPLIST_FILE = Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTestingTests-iOS";
- PRODUCT_NAME = SnapshotTestingTests;
- SDKROOT = iphoneos;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 2277B56067B75046C0A1B62F /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- INFOPLIST_FILE = Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTestingTests-tvOS";
- PRODUCT_NAME = SnapshotTestingTests;
- SDKROOT = appletvos;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 3;
- };
- name = Debug;
- };
- 40A5D28387BCBCA2CC1FE11C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- INFOPLIST_FILE = Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTestingTests-iOS";
- PRODUCT_NAME = SnapshotTestingTests;
- SDKROOT = iphoneos;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 4FA7607F66B8ABA649B6056C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CODE_SIGN_IDENTITY = "";
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_BITCODE = NO;
- ENABLE_TESTING_SEARCH_PATHS = YES;
- FRAMEWORK_SEARCH_PATHS = "$(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks";
- INFOPLIST_FILE = Sources/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/../Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTesting-macOS";
- PRODUCT_NAME = SnapshotTesting;
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 7A892D3CF9DFA14F5D83DDC6 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- COMBINE_HIDPI_IMAGES = YES;
- INFOPLIST_FILE = Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/../Frameworks",
- "@loader_path/../Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTestingTests-macOS";
- PRODUCT_NAME = SnapshotTestingTests;
- SDKROOT = macosx;
- SWIFT_VERSION = 5.0;
- };
- name = Debug;
- };
- 97BC453D0A2FD987C257005F /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CODE_SIGN_IDENTITY = "";
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_BITCODE = NO;
- ENABLE_TESTING_SEARCH_PATHS = YES;
- FRAMEWORK_SEARCH_PATHS = "$(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks";
- INFOPLIST_FILE = Sources/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/../Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTesting-macOS";
- PRODUCT_NAME = SnapshotTesting;
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SWIFT_VERSION = 5.0;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- AEDE104E00DE98A57AC67D74 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- MACOSX_DEPLOYMENT_TARGET = 10.10;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_VERSION = 5.0;
- TVOS_DEPLOYMENT_TARGET = 10.0;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- CF766E2537E4426A0D7C2694 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CODE_SIGN_IDENTITY = "";
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_BITCODE = NO;
- ENABLE_TESTING_SEARCH_PATHS = YES;
- FRAMEWORK_SEARCH_PATHS = "$(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks";
- INFOPLIST_FILE = Sources/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTesting-iOS";
- PRODUCT_NAME = SnapshotTesting;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- D9FF7D396CC20A3E59EB1145 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CODE_SIGN_IDENTITY = "";
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_BITCODE = NO;
- ENABLE_TESTING_SEARCH_PATHS = YES;
- FRAMEWORK_SEARCH_PATHS = "$(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks";
- INFOPLIST_FILE = Sources/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTesting-iOS";
- PRODUCT_NAME = SnapshotTesting;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- DE96DD966ECF6C6107DC8979 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CODE_SIGN_IDENTITY = "";
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_BITCODE = NO;
- ENABLE_TESTING_SEARCH_PATHS = YES;
- FRAMEWORK_SEARCH_PATHS = "$(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks";
- INFOPLIST_FILE = Sources/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTesting-tvOS";
- PRODUCT_NAME = SnapshotTesting;
- SDKROOT = appletvos;
- SKIP_INSTALL = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 3;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- EB2503D15AB442FE79CAD0B3 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "DEBUG=1",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- MACOSX_DEPLOYMENT_TARGET = 10.10;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TVOS_DEPLOYMENT_TARGET = 10.0;
- };
- name = Debug;
- };
- EE2EEFC9F90E51027AEC6732 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- INFOPLIST_FILE = Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTestingTests-tvOS";
- PRODUCT_NAME = SnapshotTestingTests;
- SDKROOT = appletvos;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 3;
- };
- name = Release;
- };
- F5C56FCFB9CA36D38912B3F7 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CODE_SIGN_IDENTITY = "";
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_BITCODE = NO;
- ENABLE_TESTING_SEARCH_PATHS = YES;
- FRAMEWORK_SEARCH_PATHS = "$(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks";
- INFOPLIST_FILE = Sources/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTesting-tvOS";
- PRODUCT_NAME = SnapshotTesting;
- SDKROOT = appletvos;
- SKIP_INSTALL = YES;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = 3;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- FFBA36D8171A8AF1E78CE7BE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- COMBINE_HIDPI_IMAGES = YES;
- INFOPLIST_FILE = Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/../Frameworks",
- "@loader_path/../Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "co.pointfree.SnapshotTestingTests-macOS";
- PRODUCT_NAME = SnapshotTestingTests;
- SDKROOT = macosx;
- SWIFT_VERSION = 5.0;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 43416B28BD58085FC3F324D7 /* Build configuration list for PBXNativeTarget "SnapshotTestingTests_iOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0599123409D3A74965DD7DF5 /* Debug */,
- 40A5D28387BCBCA2CC1FE11C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 45828BACEEB05CF377BFF48C /* Build configuration list for PBXNativeTarget "SnapshotTesting_tvOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE96DD966ECF6C6107DC8979 /* Debug */,
- F5C56FCFB9CA36D38912B3F7 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 53535ECD7578718495DC8DA7 /* Build configuration list for PBXNativeTarget "SnapshotTesting_iOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- CF766E2537E4426A0D7C2694 /* Debug */,
- D9FF7D396CC20A3E59EB1145 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 67DF8F8EE0829CEC5997C47A /* Build configuration list for PBXNativeTarget "SnapshotTesting_macOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 4FA7607F66B8ABA649B6056C /* Debug */,
- 97BC453D0A2FD987C257005F /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 6EDB60BF7A99F33EB1FD5F4A /* Build configuration list for PBXNativeTarget "SnapshotTestingTests_tvOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2277B56067B75046C0A1B62F /* Debug */,
- EE2EEFC9F90E51027AEC6732 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 8C8E718FA8686D70ECC68A56 /* Build configuration list for PBXNativeTarget "SnapshotTestingTests_macOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7A892D3CF9DFA14F5D83DDC6 /* Debug */,
- FFBA36D8171A8AF1E78CE7BE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- D9A4BF45876C849A308801A2 /* Build configuration list for PBXProject "SnapshotTesting" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- EB2503D15AB442FE79CAD0B3 /* Debug */,
- AEDE104E00DE98A57AC67D74 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 675140927BC96A4EABE97C29 /* Project object */;
-}
diff --git a/SnapshotTesting.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/SnapshotTesting.xcodeproj/project.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index dcbdf42f8..000000000
--- a/SnapshotTesting.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/SnapshotTesting.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/SnapshotTesting.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
deleted file mode 100644
index 18d981003..000000000
--- a/SnapshotTesting.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- IDEDidComputeMac32BitWarning
-
-
-
diff --git a/SnapshotTesting.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/SnapshotTesting.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
deleted file mode 100644
index a72dc2b4c..000000000
--- a/SnapshotTesting.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded
-
-
-
\ No newline at end of file
diff --git a/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_iOS.xcscheme b/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_iOS.xcscheme
deleted file mode 100644
index c49d67ab5..000000000
--- a/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_iOS.xcscheme
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_macOS.xcscheme b/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_macOS.xcscheme
deleted file mode 100644
index 0e2623c59..000000000
--- a/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_macOS.xcscheme
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_tvOS.xcscheme b/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_tvOS.xcscheme
deleted file mode 100644
index ea3b27fc8..000000000
--- a/SnapshotTesting.xcodeproj/xcshareddata/xcschemes/SnapshotTesting_tvOS.xcscheme
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Tests/SnapshotTestingTests/SnapshotTestingTests.swift b/Tests/SnapshotTestingTests/SnapshotTestingTests.swift
index 93ce66a56..42a6105de 100644
--- a/Tests/SnapshotTestingTests/SnapshotTestingTests.swift
+++ b/Tests/SnapshotTestingTests/SnapshotTestingTests.swift
@@ -1164,9 +1164,9 @@ final class SnapshotTestingTests: XCTestCase {
}
#endif
+ #if os(iOS)
@available(iOS 13.0, *)
func testSwiftUIView_iOS() {
- #if os(iOS)
struct MyView: SwiftUI.View {
var body: some SwiftUI.View {
HStack {
@@ -1185,12 +1185,12 @@ final class SnapshotTestingTests: XCTestCase {
assertSnapshot(matching: view, as: .image(layout: .sizeThatFits, traits: .init(userInterfaceStyle: .light)), named: "size-that-fits")
assertSnapshot(matching: view, as: .image(layout: .fixed(width: 200.0, height: 100.0), traits: .init(userInterfaceStyle: .light)), named: "fixed")
assertSnapshot(matching: view, as: .image(layout: .device(config: .iPhoneSe), traits: .init(userInterfaceStyle: .light)), named: "device")
- #endif
}
+ #endif
+ #if os(tvOS)
@available(tvOS 13.0, *)
func testSwiftUIView_tvOS() {
- #if os(tvOS)
struct MyView: SwiftUI.View {
var body: some SwiftUI.View {
HStack {
@@ -1208,8 +1208,8 @@ final class SnapshotTestingTests: XCTestCase {
assertSnapshot(matching: view, as: .image(layout: .sizeThatFits), named: "size-that-fits")
assertSnapshot(matching: view, as: .image(layout: .fixed(width: 300.0, height: 100.0)), named: "fixed")
assertSnapshot(matching: view, as: .image(layout: .device(config: .tv)), named: "device")
- #endif
}
+ #endif
@available(*, deprecated)
func testIsRecordingProxy() {
diff --git a/project.yml b/project.yml
deleted file mode 100644
index 4e041a412..000000000
--- a/project.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-name: SnapshotTesting
-options:
- bundleIdPrefix: co.pointfree
- deploymentTarget:
- iOS: 11.0
- macOS: '10.10'
- tvOS: 10.0
- indentWidth: 2
- tabWidth: 2
- usesTabs: false
-targets:
- SnapshotTesting:
- platform: [macOS, iOS, tvOS]
- settings:
- ENABLE_BITCODE: false
- FRAMEWORK_SEARCH_PATHS: $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks
- SWIFT_VERSION: 5.0
- APPLICATION_EXTENSION_API_ONLY: 'YES'
- ENABLE_TESTING_SEARCH_PATHS: 'YES'
- scheme:
- environmentVariables:
- SNAPSHOT_ARTIFACTS: /tmp/__SnapshotArtifacts__
- testTargets: ['SnapshotTestingTests_${platform}']
- sources: [Sources]
- type: framework
- SnapshotTestingTests:
- dependencies: [{target: 'SnapshotTesting_${platform}'}]
- platform: [macOS, iOS, tvOS]
- settings:
- SWIFT_VERSION: 5.0
- APPLICATION_EXTENSION_API_ONLY: 'YES'
- sources:
- - path: Tests
- excludes:
- - LinuxMain.swift
- - '**/__Fixtures__'
- - '**/__Snapshots__/SnapshotTestingTests'
- type: bundle.unit-test