diff --git a/Sources/SnapshotTestingExtensions/UITraitCollection.swift b/Sources/SnapshotTestingExtensions/UITraitCollection.swift index 5dd8cfa1..dc49bd02 100644 --- a/Sources/SnapshotTestingExtensions/UITraitCollection.swift +++ b/Sources/SnapshotTestingExtensions/UITraitCollection.swift @@ -95,4 +95,88 @@ extension UITraitCollection { ]) } } + + internal static func iPhone15(_ 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 iPhone15Plus(_ 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 iPhone15Pro(_ 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 iPhone15ProMax(_ 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 index b7032c8b..8510d3a1 100644 --- a/Sources/SnapshotTestingExtensions/ViewImageConfig.swift +++ b/Sources/SnapshotTestingExtensions/ViewImageConfig.swift @@ -67,4 +67,60 @@ extension ViewImageConfig { } return ViewImageConfig(safeArea: safeArea, size: size, traits: .iPhone14ProMax(orientation)) } + + public static func iPhone15(_ 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: .iPhone15(orientation)) + } + + public static func iPhone15Plus(_ 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: .iPhone15Plus(orientation)) + } + + public static func iPhone15Pro(_ 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: .iPhone15Pro(orientation)) + } + + public static func iPhone15ProMax(_ 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: .iPhone15ProMax(orientation)) + } } diff --git a/Tests/LayoutTests/Support/Device.swift b/Tests/LayoutTests/Support/Device.swift index ddb382f8..f5915dcf 100644 --- a/Tests/LayoutTests/Support/Device.swift +++ b/Tests/LayoutTests/Support/Device.swift @@ -18,6 +18,10 @@ internal enum Device: CustomStringConvertible { case iPhone14Plus(Orientation) case iPhone14Pro(Orientation) case iPhone14ProMax(Orientation) + case iPhone15(Orientation) + case iPhone15Plus(Orientation) + case iPhone15Pro(Orientation) + case iPhone15ProMax(Orientation) internal enum Orientation { @@ -61,6 +65,19 @@ internal enum Device: CustomStringConvertible { [.iPhone14ProMax(.portrait), .iPhone14ProMax(.landscape)] } + internal static var iPhone15: [Self] { + [.iPhone15(.portrait), .iPhone15(.landscape)] + } + internal static var iPhone15Plus: [Self] { + [.iPhone15Plus(.portrait), .iPhone15Plus(.landscape)] + } + internal static var iPhone15Pro: [Self] { + [.iPhone15Pro(.portrait), .iPhone15Pro(.landscape)] + } + internal static var iPhone15ProMax: [Self] { + [.iPhone15ProMax(.portrait), .iPhone15ProMax(.landscape)] + } + internal static var allTestDevices: [Self] { portraitTestDevices + landscapeTestDevices } @@ -75,7 +92,11 @@ internal enum Device: CustomStringConvertible { .iPhone14(.portrait), .iPhone14Plus(.portrait), .iPhone14Pro(.portrait), - .iPhone14ProMax(.portrait) + .iPhone14ProMax(.portrait), + .iPhone15(.portrait), + .iPhone15Plus(.portrait), + .iPhone15Pro(.portrait), + .iPhone15ProMax(.portrait) ] } @@ -89,7 +110,11 @@ internal enum Device: CustomStringConvertible { .iPhone14(.landscape), .iPhone14Plus(.landscape), .iPhone14Pro(.landscape), - .iPhone14ProMax(.landscape) + .iPhone14ProMax(.landscape), + .iPhone15(.landscape), + .iPhone15Plus(.landscape), + .iPhone15Pro(.landscape), + .iPhone15ProMax(.landscape) ] } @@ -114,23 +139,31 @@ internal enum Device: CustomStringConvertible { internal var name: String { switch self { case let .iPhone8(orientation): - return "iPhone 8 - \(orientation)" + "iPhone 8 - \(orientation)" case let .iPhoneSE(orientation): - return "iPhone SE - \(orientation)" + "iPhone SE - \(orientation)" case let .iPhoneX(orientation): - return "iPhone X - \(orientation)" + "iPhone X - \(orientation)" case let .iPhone13(orientation): - return "iPhone 13 - \(orientation)" + "iPhone 13 - \(orientation)" case let .iPhone13mini(orientation): - return "iPhone 13 mini - \(orientation)" + "iPhone 13 mini - \(orientation)" case let .iPhone14(orientation): - return "iPhone 14 - \(orientation)" + "iPhone 14 - \(orientation)" case let .iPhone14Plus(orientation): - return "iPhone 14 Plus - \(orientation)" + "iPhone 14 Plus - \(orientation)" case let .iPhone14Pro(orientation): - return "iPhone 14 Pro - \(orientation)" + "iPhone 14 Pro - \(orientation)" case let .iPhone14ProMax(orientation): - return "iPhone 14 Pro Max - \(orientation)" + "iPhone 14 Pro Max - \(orientation)" + case let .iPhone15(orientation): + "iPhone 15 - \(orientation)" + case let .iPhone15Plus(orientation): + "iPhone 15 Plus - \(orientation)" + case let .iPhone15Pro(orientation): + "iPhone 15 Pro - \(orientation)" + case let .iPhone15ProMax(orientation): + "iPhone 15 Pro Max - \(orientation)" } } } diff --git a/Tests/LayoutTests/Support/SnapshotTesting.swift b/Tests/LayoutTests/Support/SnapshotTesting.swift index f603a507..4abaa6a9 100644 --- a/Tests/LayoutTests/Support/SnapshotTesting.swift +++ b/Tests/LayoutTests/Support/SnapshotTesting.swift @@ -64,23 +64,31 @@ extension Device { internal var config: ViewImageConfig { switch self { case let .iPhone8(orientation): - return .iPhone8(orientation.configOrientation) + .iPhone8(orientation.configOrientation) case let .iPhoneSE(orientation): - return .iPhoneSe(orientation.configOrientation) + .iPhoneSe(orientation.configOrientation) case let .iPhoneX(orientation): - return .iPhoneX(orientation.configOrientation) + .iPhoneX(orientation.configOrientation) case let .iPhone13(orientation): - return .iPhone13(orientation.configOrientation) + .iPhone13(orientation.configOrientation) case let .iPhone13mini(orientation): - return .iPhone13Mini(orientation.configOrientation) + .iPhone13Mini(orientation.configOrientation) case let .iPhone14(orientation): - return .iPhone14(orientation.configOrientation) + .iPhone14(orientation.configOrientation) case let .iPhone14Plus(orientation): - return .iPhone14Plus(orientation.configOrientation) + .iPhone14Plus(orientation.configOrientation) case let .iPhone14Pro(orientation): - return .iPhone14Pro(orientation.configOrientation) + .iPhone14Pro(orientation.configOrientation) case let .iPhone14ProMax(orientation): - return .iPhone14ProMax(orientation.configOrientation) + .iPhone14ProMax(orientation.configOrientation) + case let .iPhone15(orientation): + .iPhone15(orientation.configOrientation) + case let .iPhone15Plus(orientation): + .iPhone15Plus(orientation.configOrientation) + case let .iPhone15Pro(orientation): + .iPhone15Pro(orientation.configOrientation) + case let .iPhone15ProMax(orientation): + .iPhone15ProMax(orientation.configOrientation) } } } diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..a4e6ec58 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..70907f2e --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..a4e6ec58 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..70907f2e --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..c573d9ff Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..88c4644d --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-portrait.png new file mode 100644 index 00000000..c573d9ff Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-portrait.txt new file mode 100644 index 00000000..88c4644d --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions.iPhone-15-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..bb1ad6ea Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..831043a2 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-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-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..831043a2 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-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-15-Pro-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..84128a00 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..c5d99db5 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-portrait.png b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-portrait.png new file mode 100644 index 00000000..84128a00 Binary files /dev/null and b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-portrait.txt b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-portrait.txt new file mode 100644 index 00000000..c5d99db5 --- /dev/null +++ b/Tests/LayoutTests/UIKitTests/__Snapshots__/NSLayoutConstraintTests/testConstraintsFormatsViewsMetricsOptions_givenRightToLeftFormatOption.iPhone-15-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..d49290ad Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..8cf3d59a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..d49290ad Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..8cf3d59a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..e29addd6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..1f29355d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-portrait.png new file mode 100644 index 00000000..e29addd6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..1f29355d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringDocumentationExample.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..d49290ad Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..8cf3d59a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..d49290ad Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..8cf3d59a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..e29addd6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..1f29355d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.png new file mode 100644 index 00000000..e29addd6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..1f29355d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testHorizontallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..4f84e32c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..0ac7d9dc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..4f84e32c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..0ac7d9dc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..6f1d971e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..242d0019 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-portrait.png new file mode 100644 index 00000000..6f1d971e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..242d0019 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutBuilderDocumentationExample.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..782da7bd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..4f77818c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..782da7bd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..4f77818c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..8bafeeb2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..88c10b53 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-portrait.png new file mode 100644 index 00000000..8bafeeb2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..88c10b53 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testLayoutDocumentationExample.iPhone-15-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..1aa7ccdf Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..66d6f733 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..1aa7ccdf Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..66d6f733 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-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-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..47bed3d3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..738f6a46 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-portrait.png new file mode 100644 index 00000000..47bed3d3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..738f6a46 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testReadmeExample.iPhone-15-portrait.txt @@ -0,0 +1,6 @@ + + | > + | | > + | | ; layer = > + | | ; layer = > + | | | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..4a6e7b7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..15455fda --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..4a6e7b7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..15455fda --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..4e559ff8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..f79f7f32 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-portrait.png new file mode 100644 index 00000000..4e559ff8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..f79f7f32 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringDocumentationExample.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..4a6e7b7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..15455fda --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..4a6e7b7d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..15455fda --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..4e559ff8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..f79f7f32 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.png new file mode 100644 index 00000000..4e559ff8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.txt new file mode 100644 index 00000000..f79f7f32 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutExampleTests/testVerticallyCenteringLayoutItemDocumentationExample.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | > \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..5eae4e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..6e87aa4f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..5eae4e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..6e87aa4f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..be12f934 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..03b13d98 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..be12f934 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..03b13d98 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testAspectRatioWithRatioPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-landscape.png new file mode 100644 index 00000000..58af20a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-landscape.txt new file mode 100644 index 00000000..f4b1e8ed --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..a3f5db2c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..7f26457e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-landscape.png new file mode 100644 index 00000000..58af20a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-landscape.txt new file mode 100644 index 00000000..f4b1e8ed --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..a3f5db2c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..7f26457e --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-landscape.png new file mode 100644 index 00000000..48949e7f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-landscape.txt new file mode 100644 index 00000000..ceebec6f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..a4ba4e72 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..de619522 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-landscape.png new file mode 100644 index 00000000..48949e7f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-landscape.txt new file mode 100644 index 00000000..ceebec6f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-portrait.png new file mode 100644 index 00000000..a4ba4e72 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-portrait.txt new file mode 100644 index 00000000..de619522 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenLeadingAndTrailing.iPhone-15-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-landscape.png new file mode 100644 index 00000000..82a61ef0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-landscape.txt new file mode 100644 index 00000000..d39189b5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..c6959a66 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..2f519231 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Plus-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-landscape.png new file mode 100644 index 00000000..82a61ef0 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-landscape.txt new file mode 100644 index 00000000..d39189b5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..c6959a66 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..2f519231 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-landscape.png new file mode 100644 index 00000000..0410d3ac Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-landscape.txt new file mode 100644 index 00000000..60e68874 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..916dae9a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..283f39c5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-Pro-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-landscape.png new file mode 100644 index 00000000..0410d3ac Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-landscape.txt new file mode 100644 index 00000000..60e68874 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-landscape.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-portrait.png new file mode 100644 index 00000000..916dae9a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-portrait.txt new file mode 100644 index 00000000..283f39c5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterBetweenTopAndBottom.iPhone-15-portrait.txt @@ -0,0 +1,2 @@ + + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..9a9f7953 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..eb59045b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..9a9f7953 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..eb59045b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..15d9ee35 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..0240e194 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..15d9ee35 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..0240e194 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterOffsetPriority.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..8245e5e2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..25c3bbb7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..8245e5e2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..25c3bbb7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..de4be12c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..4661079d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..de4be12c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..4661079d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testCenterWithAxisOffsetMultiplierPriority.iPhone-15-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..3b439130 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d1914dea --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..3b439130 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d1914dea --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..2e7b4c12 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..d64a4415 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..2e7b4c12 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..d64a4415 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightIsRelationToConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..8271e6c1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..7e2f0349 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..8271e6c1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..7e2f0349 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..40b7945c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..bf0f25e0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..40b7945c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..bf0f25e0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testHeightWithConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..42dc2a3e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..76ed60f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..42dc2a3e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..76ed60f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..60579e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..97d8f757 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-portrait.png new file mode 100644 index 00000000..60579e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..97d8f757 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizePriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..42dc2a3e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..76ed60f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..42dc2a3e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..76ed60f2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..60579e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..97d8f757 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..60579e3c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..97d8f757 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSizeWidthHeightPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..efe8e012 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..390fc190 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..efe8e012 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..390fc190 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..41518f00 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..5fdc7740 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-portrait.png new file mode 100644 index 00000000..41518f00 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-portrait.txt new file mode 100644 index 00000000..5fdc7740 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquare.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..efe8e012 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..390fc190 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..efe8e012 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..390fc190 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..41518f00 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..5fdc7740 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..41518f00 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..5fdc7740 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testSquareWithLengthPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..4bdafd1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..31d94b15 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..4bdafd1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..31d94b15 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..bae9bf82 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..f9415546 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..bae9bf82 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..f9415546 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,6 @@ + + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..4dbd3795 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d5ce88ce --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..4dbd3795 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d5ce88ce --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..dd7702de Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..0a263dc5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-portrait.png new file mode 100644 index 00000000..dd7702de Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-portrait.txt new file mode 100644 index 00000000..0a263dc5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributeIsRelationMultiplierConstantPriority_givenRelation.iPhone-15-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..59faf18c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..2337ce66 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..59faf18c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..2337ce66 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..4a1c5981 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..1c908b5c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..4a1c5981 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..1c908b5c --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToAttributesConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..fae7802e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..184904d6 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..fae7802e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..184904d6 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..47a0fd24 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..1b9a82f1 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..47a0fd24 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..1b9a82f1 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesCanonicalEdgesInsetPriority.iPhone-15-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..5cc6dfa5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..14563d27 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..5cc6dfa5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..14563d27 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..28a840b4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..6edb53a7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-portrait.png new file mode 100644 index 00000000..28a840b4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-portrait.txt new file mode 100644 index 00000000..6edb53a7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityCanonical.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..5cc6dfa5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..14563d27 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..5cc6dfa5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..14563d27 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..28a840b4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..6edb53a7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..28a840b4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..6edb53a7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesInsetsPriorityDirectional.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..52fa88b8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..f3fd2a19 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..52fa88b8 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..f3fd2a19 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..de601e9a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..066af834 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..de601e9a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..066af834 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToEdgesWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..81d6d1c1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..ecabd911 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..81d6d1c1 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..ecabd911 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..b74129ab Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..98b19049 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..b74129ab Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..98b19049 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsCanonicalEdgesInsetPriority.iPhone-15-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..2cdf852a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..411010ad --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..2cdf852a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..411010ad --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..9f457b39 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..ae67a08a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-portrait.png new file mode 100644 index 00000000..9f457b39 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-portrait.txt new file mode 100644 index 00000000..ae67a08a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityCanonical.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..3ca2ab3d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..c0d02d54 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..3ca2ab3d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..c0d02d54 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..e0b01270 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..0a0b9db3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..e0b01270 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..0a0b9db3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsInsetsPriorityDirectional.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..f180764a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..44905f45 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..f180764a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..44905f45 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..fcce81d6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..c44b3fac --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..fcce81d6 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..c44b3fac --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToMarginsWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-landscape.png new file mode 100644 index 00000000..e439226b Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-landscape.txt new file mode 100644 index 00000000..569a283b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..f2b67dd7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d321ce6b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-landscape.png new file mode 100644 index 00000000..e439226b Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-landscape.txt new file mode 100644 index 00000000..569a283b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..f2b67dd7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d321ce6b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-landscape.png new file mode 100644 index 00000000..b86c2b9c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-landscape.txt new file mode 100644 index 00000000..e67581c7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..cfbcd09c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..4bb8862d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-landscape.png new file mode 100644 index 00000000..b86c2b9c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-landscape.txt new file mode 100644 index 00000000..e67581c7 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-landscape.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..cfbcd09c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..4bb8862d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaCanonicalEdgesInsetPriority.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-landscape.png new file mode 100644 index 00000000..2fa3f506 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-landscape.txt new file mode 100644 index 00000000..1e1d7e25 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..3a5d5b2f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..24c518d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-landscape.png new file mode 100644 index 00000000..2fa3f506 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-landscape.txt new file mode 100644 index 00000000..1e1d7e25 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..3a5d5b2f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..24c518d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-landscape.png new file mode 100644 index 00000000..19208917 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-landscape.txt new file mode 100644 index 00000000..d3ed1fc3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..3521566e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..77762b13 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-landscape.png new file mode 100644 index 00000000..19208917 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-landscape.txt new file mode 100644 index 00000000..d3ed1fc3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-portrait.png new file mode 100644 index 00000000..3521566e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-portrait.txt new file mode 100644 index 00000000..77762b13 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityCanonical.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-landscape.png new file mode 100644 index 00000000..2fa3f506 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-landscape.txt new file mode 100644 index 00000000..1e1d7e25 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..3a5d5b2f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..24c518d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-landscape.png new file mode 100644 index 00000000..2fa3f506 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-landscape.txt new file mode 100644 index 00000000..1e1d7e25 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..3a5d5b2f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..24c518d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-landscape.png new file mode 100644 index 00000000..19208917 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-landscape.txt new file mode 100644 index 00000000..d3ed1fc3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..3521566e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..77762b13 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-landscape.png new file mode 100644 index 00000000..19208917 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-landscape.txt new file mode 100644 index 00000000..d3ed1fc3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..3521566e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..77762b13 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaInsetsPriorityDirectional.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-landscape.png new file mode 100644 index 00000000..36d64df3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-landscape.txt new file mode 100644 index 00000000..bb611cec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..7723a950 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..27101534 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-landscape.png new file mode 100644 index 00000000..36d64df3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-landscape.txt new file mode 100644 index 00000000..bb611cec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..7723a950 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..27101534 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-landscape.png new file mode 100644 index 00000000..6bee7920 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-landscape.txt new file mode 100644 index 00000000..435e68fb --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..754d821c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..6680ecaf --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-landscape.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-landscape.png new file mode 100644 index 00000000..6bee7920 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-landscape.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-landscape.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-landscape.txt new file mode 100644 index 00000000..435e68fb --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-landscape.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..754d821c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..6680ecaf --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSafeAreaWithEdgesInsetPriorityDirectional.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..2ea157e5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..3b76bd53 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..2ea157e5 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..3b76bd53 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..0f2b752f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..8227e5ea --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..0f2b752f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..8227e5ea --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideEdgesInsetPriority.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..1159c7f2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..e1ebb205 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..1159c7f2 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..e1ebb205 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..a45056a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..482cb338 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..a45056a4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..482cb338 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testToSideMarginsInsetPriority.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..1b98f177 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..2bec2bcc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..1b98f177 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..2bec2bcc --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..4ccb94a7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..2fe42b69 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..4ccb94a7 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..2fe42b69 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthIsRelationToConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,7 @@ + + | + | + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..6e577c74 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..9f85eb2f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..6e577c74 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..9f85eb2f --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..3099d739 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..e662d330 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..3099d739 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..e662d330 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutItemTests/testWidthWithConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..9c5833f4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d95a136a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..9c5833f4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d95a136a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..1d5723b3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..0549f45d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..1d5723b3 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..0549f45d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenLeadingAndTrailingPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..01a3330e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..ce4e3479 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..01a3330e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..ce4e3479 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..67d8fcfc Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..ed896a7d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..67d8fcfc Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..ed896a7d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testCenterViewBetweenTopAndBottomPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..32df3a29 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..385cfe44 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..32df3a29 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..385cfe44 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..2d50300d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..2ef6cf90 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..2d50300d Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..2ef6cf90 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..f1db110f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..e181667d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..f1db110f Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..e181667d --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..3b31563e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..5b3d40c8 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..3b31563e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..5b3d40c8 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..c7821bcd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..0e16698a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..c7821bcd Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..0e16698a --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..93cea536 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..e360a8e1 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-portrait.png new file mode 100644 index 00000000..93cea536 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-portrait.txt new file mode 100644 index 00000000..e360a8e1 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainAnchorIsRelationToTargetAnchorMultiplierConstantPriority.iPhone-15-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..ba39ffec Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..788082c5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..ba39ffec Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..788082c5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..1784d0f4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..5d7972ef --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-portrait.png new file mode 100644 index 00000000..1784d0f4 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-portrait.txt new file mode 100644 index 00000000..5d7972ef --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewAttributeIsRelationToTargetAttributeOfTargetViewMultiplierConstant.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..2478400c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..c717a78b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Plus-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..2478400c Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..c717a78b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..5627d24e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..4bc39640 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-Pro-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-portrait.png new file mode 100644 index 00000000..5627d24e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-portrait.txt new file mode 100644 index 00000000..4bc39640 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInset.iPhone-15-portrait.txt @@ -0,0 +1,4 @@ + + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..79122461 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..93d265f5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..79122461 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..93d265f5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..1596b250 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..f03856e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-portrait.png new file mode 100644 index 00000000..1596b250 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-portrait.txt new file mode 100644 index 00000000..f03856e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsCanonical.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..79122461 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..93d265f5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..79122461 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..93d265f5 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..1596b250 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..f03856e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-portrait.png new file mode 100644 index 00000000..1596b250 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-portrait.txt new file mode 100644 index 00000000..f03856e3 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testConstrainViewToTargetViewInsetsDirectional.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributeWithViews.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualAttributesWithViews.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..00ecd454 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..d32156ec --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-portrait.png new file mode 100644 index 00000000..2475a620 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-portrait.txt new file mode 100644 index 00000000..ae1561c0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testEqualSizeWithViews.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..7018d6ce Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..7cce3379 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..7018d6ce Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..7cce3379 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..12c2cc02 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..056f864b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-portrait.png new file mode 100644 index 00000000..12c2cc02 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-portrait.txt new file mode 100644 index 00000000..056f864b --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment.iPhone-15-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..0b29c14a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..9755df97 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..0b29c14a Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..9755df97 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..976f9745 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..698ca304 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-portrait.png new file mode 100644 index 00000000..976f9745 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-portrait.txt new file mode 100644 index 00000000..698ca304 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testHorizontalViewsSpacingDirectionPriorityAlignment_givenAlignment.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..514be407 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..9dbf98f0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Plus-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..514be407 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..9dbf98f0 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..071d4174 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..66260522 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-Pro-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-portrait.png new file mode 100644 index 00000000..071d4174 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-portrait.txt new file mode 100644 index 00000000..66260522 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment.iPhone-15-portrait.txt @@ -0,0 +1,5 @@ + + | + | + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.png new file mode 100644 index 00000000..9ebc9c1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.txt new file mode 100644 index 00000000..010367d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Plus-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.png new file mode 100644 index 00000000..9ebc9c1e Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.txt new file mode 100644 index 00000000..010367d2 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-Max-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.png new file mode 100644 index 00000000..0b168895 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.txt new file mode 100644 index 00000000..c56a8787 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-Pro-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-portrait.png b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-portrait.png new file mode 100644 index 00000000..0b168895 Binary files /dev/null and b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-portrait.png differ diff --git a/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-portrait.txt b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-portrait.txt new file mode 100644 index 00000000..c56a8787 --- /dev/null +++ b/Tests/LayoutTests/__Snapshots__/LayoutTests/testVerticalViewsSpacingPriorityAlignment_givenAlignment.iPhone-15-portrait.txt @@ -0,0 +1,3 @@ + + | + | \ No newline at end of file