diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 678e441a..5fad92cf 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -43,14 +43,14 @@ jobs: run: > xcodebuild build-for-testing - -scheme "Layout" + -scheme "Layout-Package" -destination "name=$SIMULATOR,OS=latest" SWIFT_TREAT_WARNINGS_AS_ERRORS=YES - name: Test run: > xcodebuild test-without-building - -scheme "Layout" + -scheme "Layout-Package" -destination "name=$SIMULATOR,OS=latest" - name: Delete snapshots run: make delete-snapshots @@ -58,7 +58,7 @@ jobs: run: > xcodebuild test-without-building - -scheme "Layout" + -scheme "Layout-Package" -destination "name=$SIMULATOR,OS=latest" continue-on-error: true - name: Validate recorded snapshots diff --git a/Makefile b/Makefile index 01d232f8..d65301ba 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ analyze: @DERIVED_DATA="$$(mktemp -d)"; \ XCODEBUILD_LOG="$$DERIVED_DATA/xcodebuild.log"; \ xcodebuild \ - -scheme "$(target)" \ + -scheme "$(target)-Package" \ -destination "$(destination)" \ -derivedDataPath "$$DERIVED_DATA" \ -configuration "Debug" \ diff --git a/Package.swift b/Package.swift index 907c92e1..4309bae8 100644 --- a/Package.swift +++ b/Package.swift @@ -11,6 +11,9 @@ let package = Package( .library( name: "Layout", targets: ["Layout"]), + .library( + name: "SnapshotTestingExtensions", + targets: ["SnapshotTestingExtensions"]), ], dependencies: [ .package( @@ -23,10 +26,16 @@ let package = Package( targets: [ .target( name: "Layout"), + .target( + name: "SnapshotTestingExtensions", + dependencies: [ + .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), + ]), .testTarget( name: "LayoutTests", dependencies: [ "Layout", + "SnapshotTestingExtensions", "Nimble", .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), ], diff --git a/Package@swift-5.10.swift b/Package@swift-5.10.swift index afdb6a20..fb8e71fb 100644 --- a/Package@swift-5.10.swift +++ b/Package@swift-5.10.swift @@ -18,6 +18,9 @@ let package = Package( .library( name: "Layout", targets: ["Layout"]), + .library( + name: "SnapshotTestingExtensions", + targets: ["SnapshotTestingExtensions"]), ], dependencies: [ .package( @@ -34,10 +37,20 @@ let package = Package( plugins: [ .plugin(name: SwiftLint.plugin), ]), + .target( + name: "SnapshotTestingExtensions", + dependencies: [ + .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), + ], + swiftSettings: .swiftSettings, + plugins: [ + .plugin(name: SwiftLint.plugin), + ]), .testTarget( name: "LayoutTests", dependencies: [ "Layout", + "SnapshotTestingExtensions", "Nimble", .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), ], diff --git a/Package@swift-5.9.swift b/Package@swift-5.9.swift index e056f8fc..ae3fb79d 100644 --- a/Package@swift-5.9.swift +++ b/Package@swift-5.9.swift @@ -18,6 +18,9 @@ let package = Package( .library( name: "Layout", targets: ["Layout"]), + .library( + name: "SnapshotTestingExtensions", + targets: ["SnapshotTestingExtensions"]), ], dependencies: [ .package( @@ -34,10 +37,20 @@ let package = Package( plugins: [ .plugin(name: SwiftLint.plugin), ]), + .target( + name: "SnapshotTestingExtensions", + dependencies: [ + .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), + ], + swiftSettings: .swiftSettings, + plugins: [ + .plugin(name: SwiftLint.plugin), + ]), .testTarget( name: "LayoutTests", dependencies: [ "Layout", + "SnapshotTestingExtensions", "Nimble", .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), ], diff --git a/Sources/SnapshotTestingExtensions/UITraitCollection.swift b/Sources/SnapshotTestingExtensions/UITraitCollection.swift new file mode 100644 index 00000000..5dd8cfa1 --- /dev/null +++ b/Sources/SnapshotTestingExtensions/UITraitCollection.swift @@ -0,0 +1,98 @@ +// +// All Contributions by Match Group +// +// Copyright © 2024 Tinder (Match Group, LLC) +// +// Licensed under the Match Group Modified 3-Clause BSD License. +// See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. +// + +import SnapshotTesting +import UIKit + +extension UITraitCollection { + + internal static func iPhone14(_ orientation: ViewImageConfig.Orientation) -> UITraitCollection { + let base: [UITraitCollection] = [ + UITraitCollection(forceTouchCapability: .unavailable), + UITraitCollection(layoutDirection: .leftToRight), + UITraitCollection(preferredContentSizeCategory: .medium), + UITraitCollection(userInterfaceIdiom: .phone) + ] + return switch orientation { + case .landscape: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .regular), + UITraitCollection(verticalSizeClass: .compact) + ]) + case .portrait: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .compact), + UITraitCollection(verticalSizeClass: .regular) + ]) + } + } + + internal static func iPhone14Plus(_ orientation: ViewImageConfig.Orientation) -> UITraitCollection { + let base: [UITraitCollection] = [ + UITraitCollection(forceTouchCapability: .unavailable), + UITraitCollection(layoutDirection: .leftToRight), + UITraitCollection(preferredContentSizeCategory: .medium), + UITraitCollection(userInterfaceIdiom: .phone) + ] + return switch orientation { + case .landscape: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .regular), + UITraitCollection(verticalSizeClass: .compact) + ]) + case .portrait: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .compact), + UITraitCollection(verticalSizeClass: .regular) + ]) + } + } + + internal static func iPhone14Pro(_ orientation: ViewImageConfig.Orientation) -> UITraitCollection { + let base: [UITraitCollection] = [ + UITraitCollection(forceTouchCapability: .unavailable), + UITraitCollection(layoutDirection: .leftToRight), + UITraitCollection(preferredContentSizeCategory: .medium), + UITraitCollection(userInterfaceIdiom: .phone) + ] + return switch orientation { + case .landscape: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .regular), + UITraitCollection(verticalSizeClass: .compact) + ]) + case .portrait: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .compact), + UITraitCollection(verticalSizeClass: .regular) + ]) + } + } + + internal static func iPhone14ProMax(_ orientation: ViewImageConfig.Orientation) -> UITraitCollection { + let base: [UITraitCollection] = [ + UITraitCollection(forceTouchCapability: .unavailable), + UITraitCollection(layoutDirection: .leftToRight), + UITraitCollection(preferredContentSizeCategory: .medium), + UITraitCollection(userInterfaceIdiom: .phone) + ] + return switch orientation { + case .landscape: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .regular), + UITraitCollection(verticalSizeClass: .compact) + ]) + case .portrait: + UITraitCollection(traitsFrom: base + [ + UITraitCollection(horizontalSizeClass: .compact), + UITraitCollection(verticalSizeClass: .regular) + ]) + } + } +} diff --git a/Sources/SnapshotTestingExtensions/ViewImageConfig.swift b/Sources/SnapshotTestingExtensions/ViewImageConfig.swift new file mode 100644 index 00000000..b7032c8b --- /dev/null +++ b/Sources/SnapshotTestingExtensions/ViewImageConfig.swift @@ -0,0 +1,70 @@ +// +// All Contributions by Match Group +// +// Copyright © 2024 Tinder (Match Group, LLC) +// +// Licensed under the Match Group Modified 3-Clause BSD License. +// See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. +// + +import SnapshotTesting +import UIKit + +extension ViewImageConfig { + + public static func iPhone14(_ orientation: Orientation) -> ViewImageConfig { + let safeArea: UIEdgeInsets + let size: CGSize + switch orientation { + case .landscape: + safeArea = UIEdgeInsets(top: 0, left: 47, bottom: 21, right: 47) + size = CGSize(width: 844, height: 390) + case .portrait: + safeArea = UIEdgeInsets(top: 47, left: 0, bottom: 34, right: 0) + size = CGSize(width: 390, height: 844) + } + return ViewImageConfig(safeArea: safeArea, size: size, traits: .iPhone14(orientation)) + } + + public static func iPhone14Plus(_ orientation: Orientation) -> ViewImageConfig { + let safeArea: UIEdgeInsets + let size: CGSize + switch orientation { + case .landscape: + safeArea = UIEdgeInsets(top: 0, left: 47, bottom: 21, right: 47) + size = CGSize(width: 926, height: 428) + case .portrait: + safeArea = UIEdgeInsets(top: 47, left: 0, bottom: 34, right: 0) + size = CGSize(width: 428, height: 926) + } + return ViewImageConfig(safeArea: safeArea, size: size, traits: .iPhone14Plus(orientation)) + } + + public static func iPhone14Pro(_ orientation: Orientation) -> ViewImageConfig { + let safeArea: UIEdgeInsets + let size: CGSize + switch orientation { + case .landscape: + safeArea = UIEdgeInsets(top: 0, left: 59, bottom: 21, right: 59) + size = CGSize(width: 852, height: 393) + case .portrait: + safeArea = UIEdgeInsets(top: 59, left: 0, bottom: 34, right: 0) + size = CGSize(width: 393, height: 852) + } + return ViewImageConfig(safeArea: safeArea, size: size, traits: .iPhone14Pro(orientation)) + } + + public static func iPhone14ProMax(_ orientation: Orientation) -> ViewImageConfig { + let safeArea: UIEdgeInsets + let size: CGSize + switch orientation { + case .landscape: + safeArea = UIEdgeInsets(top: 0, left: 59, bottom: 21, right: 59) + size = CGSize(width: 932, height: 430) + case .portrait: + safeArea = UIEdgeInsets(top: 59, left: 0, bottom: 34, right: 0) + size = CGSize(width: 430, height: 932) + } + return ViewImageConfig(safeArea: safeArea, size: size, traits: .iPhone14ProMax(orientation)) + } +} diff --git a/Tests/LayoutTests/Support/Device.swift b/Tests/LayoutTests/Support/Device.swift index 595bd52d..ddb382f8 100644 --- a/Tests/LayoutTests/Support/Device.swift +++ b/Tests/LayoutTests/Support/Device.swift @@ -14,6 +14,10 @@ internal enum Device: CustomStringConvertible { case iPhoneX(Orientation) case iPhone13(Orientation) case iPhone13mini(Orientation) + case iPhone14(Orientation) + case iPhone14Plus(Orientation) + case iPhone14Pro(Orientation) + case iPhone14ProMax(Orientation) internal enum Orientation { @@ -41,6 +45,22 @@ internal enum Device: CustomStringConvertible { [.iPhone13mini(.portrait), .iPhone13mini(.landscape)] } + internal static var iPhone14: [Self] { + [.iPhone14(.portrait), .iPhone14(.landscape)] + } + + internal static var iPhone14Plus: [Self] { + [.iPhone14Plus(.portrait), .iPhone14Plus(.landscape)] + } + + internal static var iPhone14Pro: [Self] { + [.iPhone14Pro(.portrait), .iPhone14Pro(.landscape)] + } + + internal static var iPhone14ProMax: [Self] { + [.iPhone14ProMax(.portrait), .iPhone14ProMax(.landscape)] + } + internal static var allTestDevices: [Self] { portraitTestDevices + landscapeTestDevices } @@ -51,7 +71,11 @@ internal enum Device: CustomStringConvertible { .iPhoneSE(.portrait), .iPhoneX(.portrait), .iPhone13(.portrait), - .iPhone13mini(.portrait) + .iPhone13mini(.portrait), + .iPhone14(.portrait), + .iPhone14Plus(.portrait), + .iPhone14Pro(.portrait), + .iPhone14ProMax(.portrait) ] } @@ -61,7 +85,11 @@ internal enum Device: CustomStringConvertible { .iPhoneSE(.landscape), .iPhoneX(.landscape), .iPhone13(.landscape), - .iPhone13mini(.landscape) + .iPhone13mini(.landscape), + .iPhone14(.landscape), + .iPhone14Plus(.landscape), + .iPhone14Pro(.landscape), + .iPhone14ProMax(.landscape) ] } @@ -95,6 +123,14 @@ internal enum Device: CustomStringConvertible { return "iPhone 13 - \(orientation)" case let .iPhone13mini(orientation): return "iPhone 13 mini - \(orientation)" + case let .iPhone14(orientation): + return "iPhone 14 - \(orientation)" + case let .iPhone14Plus(orientation): + return "iPhone 14 Plus - \(orientation)" + case let .iPhone14Pro(orientation): + return "iPhone 14 Pro - \(orientation)" + case let .iPhone14ProMax(orientation): + return "iPhone 14 Pro Max - \(orientation)" } } } diff --git a/Tests/LayoutTests/Support/SnapshotTesting.swift b/Tests/LayoutTests/Support/SnapshotTesting.swift index ff095042..f603a507 100644 --- a/Tests/LayoutTests/Support/SnapshotTesting.swift +++ b/Tests/LayoutTests/Support/SnapshotTesting.swift @@ -10,6 +10,7 @@ import Nimble import SnapshotTesting +import SnapshotTestingExtensions import UIKit import XCTest @@ -72,6 +73,14 @@ extension Device { return .iPhone13(orientation.configOrientation) case let .iPhone13mini(orientation): return .iPhone13Mini(orientation.configOrientation) + case let .iPhone14(orientation): + return .iPhone14(orientation.configOrientation) + case let .iPhone14Plus(orientation): + return .iPhone14Plus(orientation.configOrientation) + case let .iPhone14Pro(orientation): + return .iPhone14Pro(orientation.configOrientation) + case let .iPhone14ProMax(orientation): + return .iPhone14ProMax(orientation.configOrientation) } } } diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..65cacce9 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..6f088ad4 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..a4e6ec58 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..70907f2e --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..c573d9ff Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..88c4644d --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-portrait.png new file mode 100644 index 00000000..0ece1566 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-portrait.txt new file mode 100644 index 00000000..4e00c496 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-14-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..77a5cc75 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..6ec61189 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..bb1ad6ea Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..831043a2 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..84128a00 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..c5d99db5 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-portrait.png new file mode 100644 index 00000000..dcaba005 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-portrait.txt new file mode 100644 index 00000000..efc48826 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-14-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..ce6b09ca Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..cf7fa263 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..d49290ad Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..8cf3d59a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..e29addd6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..1f29355d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-portrait.png new file mode 100644 index 00000000..bda3f93a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..a190ec16 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..ce6b09ca Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..cf7fa263 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..d49290ad Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..8cf3d59a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..e29addd6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..1f29355d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.png new file mode 100644 index 00000000..bda3f93a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..a190ec16 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..af68937d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..e61f6b3f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..4f84e32c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..0ac7d9dc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..6f1d971e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..242d0019 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-portrait.png new file mode 100644 index 00000000..8f9ba657 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..6e2f25eb --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..2428224f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..80e103f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..782da7bd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..4f77818c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..8bafeeb2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..88c10b53 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-portrait.png new file mode 100644 index 00000000..913f7d08 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..82aa9960 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-14-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..4f206a8a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..5155a9be --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..1aa7ccdf Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..66d6f733 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..47bed3d3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..738f6a46 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-portrait.png new file mode 100644 index 00000000..50e4795e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..a8dd337e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-14-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..fdeafec5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..4b3352e9 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..4a6e7b7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..15455fda --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..4e559ff8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..f79f7f32 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-portrait.png new file mode 100644 index 00000000..7158e4ee Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..5aad0f12 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..fdeafec5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..4b3352e9 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..4a6e7b7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..15455fda --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..4e559ff8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..f79f7f32 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.png new file mode 100644 index 00000000..7158e4ee Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.txt new file mode 100644 index 00000000..5aad0f12 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..9eac026f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..40b58e7f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..5eae4e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..6e87aa4f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..be12f934 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..03b13d98 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..c715d360 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..1671eae4 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-landscape.png new file mode 100644 index 00000000..5acb39b8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-landscape.txt new file mode 100644 index 00000000..4fff2a51 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..e04a4124 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..fc2ce1dc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-landscape.png new file mode 100644 index 00000000..58af20a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-landscape.txt new file mode 100644 index 00000000..f4b1e8ed --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..a3f5db2c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..7f26457e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-landscape.png new file mode 100644 index 00000000..48949e7f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-landscape.txt new file mode 100644 index 00000000..ceebec6f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..a4ba4e72 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..de619522 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-landscape.png new file mode 100644 index 00000000..3a09ba46 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-landscape.txt new file mode 100644 index 00000000..67b65d3a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-portrait.png new file mode 100644 index 00000000..db53eb1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-portrait.txt new file mode 100644 index 00000000..c7123753 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-14-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-landscape.png new file mode 100644 index 00000000..26e6d87f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-landscape.txt new file mode 100644 index 00000000..88faf685 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..88b93992 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..251afed3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-landscape.png new file mode 100644 index 00000000..82a61ef0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-landscape.txt new file mode 100644 index 00000000..d39189b5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..c6959a66 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..2f519231 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-landscape.png new file mode 100644 index 00000000..0410d3ac Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-landscape.txt new file mode 100644 index 00000000..60e68874 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..916dae9a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..283f39c5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-landscape.png new file mode 100644 index 00000000..a91ad52a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-landscape.txt new file mode 100644 index 00000000..7c65fa49 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-portrait.png new file mode 100644 index 00000000..5c494134 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-portrait.txt new file mode 100644 index 00000000..f72658aa --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-14-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..8f4dbc23 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..e8a56299 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..9a9f7953 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..eb59045b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..15d9ee35 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..0240e194 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..cdf57098 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..34f54825 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..5b7ff11d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..66618659 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..8245e5e2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..25c3bbb7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..de4be12c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..4661079d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..35c9251a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..28d999ac --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-14-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..1da4f46b Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..80fa2986 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..3b439130 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d1914dea --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..2e7b4c12 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..d64a4415 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..19754304 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..c30401af --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..498b351c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..0cef68a9 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..8271e6c1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..7e2f0349 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..40b7945c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..bf0f25e0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..0b0593e8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..7113cd75 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..1267e79e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..8ba4da47 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..42dc2a3e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..76ed60f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..60579e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..97d8f757 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-portrait.png new file mode 100644 index 00000000..5ee22e26 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..de293abf --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..1267e79e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..8ba4da47 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..42dc2a3e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..76ed60f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..60579e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..97d8f757 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..5ee22e26 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..de293abf --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..78cda95c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..5321f028 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..efe8e012 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..390fc190 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..41518f00 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..5fdc7740 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-portrait.png new file mode 100644 index 00000000..8b42c7c0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-portrait.txt new file mode 100644 index 00000000..65e10c3c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..78cda95c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..5321f028 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..efe8e012 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..390fc190 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..41518f00 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..5fdc7740 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..8b42c7c0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..65e10c3c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..27e04f7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..7a806b6b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..4bdafd1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..31d94b15 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..bae9bf82 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..f9415546 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..b9f5bec2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..4422bed2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..0370610c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..85910e9e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..4dbd3795 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d5ce88ce --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..dd7702de Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..0a263dc5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-portrait.png new file mode 100644 index 00000000..e87cf53a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-portrait.txt new file mode 100644 index 00000000..4f4558cf --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-14-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..58a66285 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..389fefb3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..59faf18c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..2337ce66 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..4a1c5981 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..1c908b5c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..62df92df Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..1ec93d49 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..dbc6a6d3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..c6fc1edc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..fae7802e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..184904d6 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..47a0fd24 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..1b9a82f1 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..42e86882 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..d63a7d5e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-14-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..6c0cbb8c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..c97b4686 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..5cc6dfa5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..14563d27 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..28a840b4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..6edb53a7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-portrait.png new file mode 100644 index 00000000..92ade6fd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-portrait.txt new file mode 100644 index 00000000..39a3dc2a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..6c0cbb8c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..c97b4686 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..5cc6dfa5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..14563d27 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..28a840b4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..6edb53a7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..92ade6fd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..39a3dc2a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..c4cc7192 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..f263d728 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..52fa88b8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..f3fd2a19 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..de601e9a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..066af834 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..dadca3ea Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..aebdf305 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..08176b88 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..2379ea4d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..81d6d1c1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..ecabd911 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..b74129ab Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..98b19049 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..b36f5693 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..51514102 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-14-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..0b29da9c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..87956504 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..2cdf852a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..411010ad --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..9f457b39 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..ae67a08a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-portrait.png new file mode 100644 index 00000000..e4392914 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-portrait.txt new file mode 100644 index 00000000..64166706 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..51638744 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..9fdd9e5c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..3ca2ab3d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..c0d02d54 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..e0b01270 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..0a0b9db3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..b151c7de Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..f9df0348 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..2d900722 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..cd7a3ded --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..f180764a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..44905f45 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..fcce81d6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..c44b3fac --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..9d5fa32b Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..68675b2e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-landscape.png new file mode 100644 index 00000000..200f9a7f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-landscape.txt new file mode 100644 index 00000000..5f0630e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..0e6670d0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..386acb7a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-landscape.png new file mode 100644 index 00000000..e439226b Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-landscape.txt new file mode 100644 index 00000000..569a283b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..f2b67dd7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d321ce6b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-landscape.png new file mode 100644 index 00000000..b86c2b9c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-landscape.txt new file mode 100644 index 00000000..e67581c7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..cfbcd09c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..4bb8862d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-landscape.png new file mode 100644 index 00000000..4ba18b09 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-landscape.txt new file mode 100644 index 00000000..e9ca1247 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..3ce84bfe Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..e998177a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-landscape.png new file mode 100644 index 00000000..8d8665a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-landscape.txt new file mode 100644 index 00000000..f25d60c6 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..01806fb8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..991c5477 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-landscape.png new file mode 100644 index 00000000..2fa3f506 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-landscape.txt new file mode 100644 index 00000000..1e1d7e25 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..3a5d5b2f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..24c518d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-landscape.png new file mode 100644 index 00000000..19208917 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-landscape.txt new file mode 100644 index 00000000..d3ed1fc3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..3521566e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..77762b13 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-landscape.png new file mode 100644 index 00000000..5767e243 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-landscape.txt new file mode 100644 index 00000000..9731312e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-portrait.png new file mode 100644 index 00000000..dcd021e9 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-portrait.txt new file mode 100644 index 00000000..5c85d342 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-landscape.png new file mode 100644 index 00000000..8d8665a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-landscape.txt new file mode 100644 index 00000000..f25d60c6 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..01806fb8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..991c5477 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-landscape.png new file mode 100644 index 00000000..2fa3f506 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-landscape.txt new file mode 100644 index 00000000..1e1d7e25 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..3a5d5b2f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..24c518d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-landscape.png new file mode 100644 index 00000000..19208917 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-landscape.txt new file mode 100644 index 00000000..d3ed1fc3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..3521566e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..77762b13 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-landscape.png new file mode 100644 index 00000000..5767e243 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-landscape.txt new file mode 100644 index 00000000..9731312e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..dcd021e9 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..5c85d342 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-landscape.png new file mode 100644 index 00000000..0d7e836d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-landscape.txt new file mode 100644 index 00000000..5b904689 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..4d0af55f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..d9a6701a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-landscape.png new file mode 100644 index 00000000..36d64df3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-landscape.txt new file mode 100644 index 00000000..bb611cec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..7723a950 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..27101534 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-landscape.png new file mode 100644 index 00000000..6bee7920 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-landscape.txt new file mode 100644 index 00000000..435e68fb --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..754d821c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..6680ecaf --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-landscape.png new file mode 100644 index 00000000..07f23606 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-landscape.txt new file mode 100644 index 00000000..2790bee5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..95f83166 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..ec0fdfb7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..6c2c1fbe Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..c0478883 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..2ea157e5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..3b76bd53 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..0f2b752f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..8227e5ea --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..36a66cd9 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..0b609da6 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..64e7ae4f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..e647bdd0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..1159c7f2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..e1ebb205 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..a45056a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..482cb338 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..907e50c7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..72cb9cfc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..704a53b3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..4334da1e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..1b98f177 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..2bec2bcc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..4ccb94a7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..2fe42b69 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..435456d2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..3818e947 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..6d699630 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..d5e7c55f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..6e577c74 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..9f85eb2f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..3099d739 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..e662d330 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..ea5836c0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..46b4c4d0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..11d41837 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..d5024820 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..9c5833f4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d95a136a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..1d5723b3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..0549f45d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..bc43b7c4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..8f996155 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..9b5c8dac Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..8917f779 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..01a3330e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..ce4e3479 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..67d8fcfc Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..ed896a7d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..9888f286 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..73b614bc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..8b906117 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..8629b4cd --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..32df3a29 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..385cfe44 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..2d50300d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..2ef6cf90 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..1d99964f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..649f5381 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..870960f1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..6a478527 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..f1db110f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..e181667d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..3b31563e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..5b3d40c8 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..81e63ce8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..c793f51d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..bb1e95ac Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..e02d913e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..c7821bcd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..0e16698a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..93cea536 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..e360a8e1 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-portrait.png new file mode 100644 index 00000000..de375a96 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-portrait.txt new file mode 100644 index 00000000..4f113a2f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-14-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..17976690 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..c8fb4bd0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..ba39ffec Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..788082c5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..1784d0f4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..5d7972ef --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-portrait.png new file mode 100644 index 00000000..17501c83 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-portrait.txt new file mode 100644 index 00000000..94a0186c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..2d31eb63 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..00b57b98 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..2478400c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..c717a78b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..5627d24e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..4bc39640 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-portrait.png new file mode 100644 index 00000000..918f7b6f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-portrait.txt new file mode 100644 index 00000000..adc9261f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-14-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..57abc6b2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..baffb99d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..79122461 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..93d265f5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..1596b250 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..f03856e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-portrait.png new file mode 100644 index 00000000..58aca502 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-portrait.txt new file mode 100644 index 00000000..d6d2542a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..57abc6b2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..baffb99d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..79122461 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..93d265f5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..1596b250 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..f03856e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-portrait.png new file mode 100644 index 00000000..58aca502 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-portrait.txt new file mode 100644 index 00000000..d6d2542a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..16fcda62 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..827b437c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-portrait.png new file mode 100644 index 00000000..c3d5c2a9 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-portrait.txt new file mode 100644 index 00000000..8b42db3c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..16fcda62 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..827b437c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-portrait.png new file mode 100644 index 00000000..c3d5c2a9 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-portrait.txt new file mode 100644 index 00000000..8b42db3c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..16fcda62 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..827b437c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-portrait.png new file mode 100644 index 00000000..c3d5c2a9 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-portrait.txt new file mode 100644 index 00000000..8b42db3c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..a9e19bfd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..4bf28d9f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..7018d6ce Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..7cce3379 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..12c2cc02 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..056f864b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-portrait.png new file mode 100644 index 00000000..d25cf173 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-portrait.txt new file mode 100644 index 00000000..e6084e21 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-14-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..61f45fcc Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..4720b88d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..0b29c14a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..9755df97 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..976f9745 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..698ca304 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-portrait.png new file mode 100644 index 00000000..5fcee167 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-portrait.txt new file mode 100644 index 00000000..cc47d9d3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..fe6ea007 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..52c2bad8 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..514be407 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..9dbf98f0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..071d4174 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..66260522 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-portrait.png new file mode 100644 index 00000000..21927b34 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-portrait.txt new file mode 100644 index 00000000..e9f64c1b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-14-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.png new file mode 100644 index 00000000..dadd1016 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.txt new file mode 100644 index 00000000..7cdf7319 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.png new file mode 100644 index 00000000..9ebc9c1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.txt new file mode 100644 index 00000000..010367d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.png new file mode 100644 index 00000000..0b168895 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.txt new file mode 100644 index 00000000..c56a8787 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-portrait.png new file mode 100644 index 00000000..138b5cfd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-portrait.txt new file mode 100644 index 00000000..1aa7bd9e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-14-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file