-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Draw a special sign in case of infinite speed limit (#4584)
* Draw a special sign in case of infinite speed limit * Update changelog * Add snapshot tests for SpeedLimitView * Remove legacy screenshots * Remove legacy screenshot tests
- Loading branch information
1 parent
2e9fea9
commit 61b4bba
Showing
139 changed files
with
108 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...es/MapboxNavigation/Resources/Assets.xcassets/infinite-speed-limit.imageset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "infinite-speed-limit.pdf", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file added
BIN
+2.79 KB
...vigation/Resources/Assets.xcassets/infinite-speed-limit.imageset/infinite-speed-limit.pdf
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
Tests/MapboxNavigationTests/SpeedLimitViewSnapshotTests.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import XCTest | ||
import SnapshotTesting | ||
import MapboxDirections | ||
import CoreLocation | ||
import TestHelper | ||
@testable import MapboxNavigation | ||
@testable import MapboxCoreNavigation | ||
|
||
class SpeedLimitViewSnapshotTests: TestCase { | ||
var speedLimitView: SpeedLimitView! | ||
|
||
override func setUp() { | ||
super.setUp() | ||
speedLimitView = .init(frame: CGRect(origin: .zero, size: CGSize(width: 50, height: 50))) | ||
speedLimitView.backgroundColor = .white | ||
isRecording = false | ||
|
||
let window = UIWindow(frame: speedLimitView.bounds) | ||
window.addSubview(speedLimitView) | ||
DayStyle().apply() | ||
} | ||
|
||
override func tearDown() { | ||
speedLimitView = nil | ||
} | ||
|
||
func testMUTCD() { | ||
speedLimitView.signStandard = .mutcd | ||
speedLimitView.speedLimit = .init(value: 20, unit: .milesPerHour) | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testMUTCD_blueText() { | ||
speedLimitView.signStandard = .mutcd | ||
speedLimitView.textColor = .blue | ||
speedLimitView.speedLimit = .init(value: 120, unit: .milesPerHour) | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testVienna() { | ||
speedLimitView.signStandard = .viennaConvention | ||
speedLimitView.speedLimit = .init(value: 120, unit: .kilometersPerHour) | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testVienna_blueBorder() { | ||
UIView.setAnimationsEnabled(false) // disabling blink-in animation | ||
speedLimitView.signStandard = .viennaConvention | ||
speedLimitView.regulatoryBorderColor = .blue | ||
speedLimitView.speedLimit = .init(value: 20, unit: .kilometersPerHour) | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testUnknownViennaSpeedLimit() { | ||
speedLimitView.signStandard = .viennaConvention | ||
speedLimitView.speedLimit = nil | ||
speedLimitView.shouldShowUnknownSpeedLimit = true | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testUnknownMUTCDSpeedLimit() { | ||
speedLimitView.signStandard = .mutcd | ||
speedLimitView.speedLimit = nil | ||
speedLimitView.shouldShowUnknownSpeedLimit = true | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testInfiniteVennaSpeedLimit() { | ||
speedLimitView.signStandard = .viennaConvention | ||
speedLimitView.speedLimit = .init(value: .infinity, unit: .kilometersPerHour) | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
|
||
func testInfiniteMUTCDSpeedLimit() { | ||
speedLimitView.signStandard = .mutcd | ||
speedLimitView.speedLimit = .init(value: .infinity, unit: .kilometersPerHour) | ||
assertImageSnapshot(matching: speedLimitView.layer, as: .image(precision: 0.95)) | ||
} | ||
} |
Binary file removed
BIN
-68.3 KB
...ssalViewControllerSnapshotTests/testBannerDismissalViewControllerDayStyle.1.png
Binary file not shown.
Binary file removed
BIN
-62.5 KB
...alViewControllerSnapshotTests/testBannerDismissalViewControllerNightStyle.1.png
Binary file not shown.
Binary file removed
BIN
-66.9 KB
.../iPhone12_5/13.7/BottomBannerSnapshotTests/testBottomBannerViewController.1.png
Binary file not shown.
Binary file removed
BIN
-66.9 KB
...5/13.7/BottomBannerSnapshotTests/testBottomBannerViewControllerNoSafeArea.1.png
Binary file not shown.
Binary file removed
BIN
-7.92 KB
...__/iPhone12_5/13.7/CarPlayCompassViewSnapshotTests/testCarPlayCompassView.1.png
Binary file not shown.
Binary file removed
BIN
-7.78 KB
...__/iPhone12_5/13.7/CarPlayCompassViewSnapshotTests/testCarPlayCompassView.2.png
Binary file not shown.
Binary file removed
BIN
-98.5 KB
...FeedbackViewControllerSnapshotTests/testDayDetailedFeedbackViewController.1.png
Binary file not shown.
Binary file removed
BIN
-97.7 KB
...FeedbackViewControllerSnapshotTests/testDayDetailedFeedbackViewController.2.png
Binary file not shown.
Binary file removed
BIN
-114 KB
..._5/13.7/FeedbackViewControllerSnapshotTests/testDayFeedbackViewController.1.png
Binary file not shown.
Binary file removed
BIN
-106 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.1.png
Binary file not shown.
Binary file removed
BIN
-105 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.2.png
Binary file not shown.
Binary file removed
BIN
-97.7 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.3.png
Binary file not shown.
Binary file removed
BIN
-98.5 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.4.png
Binary file not shown.
Binary file removed
BIN
-124 KB
.../13.7/FeedbackViewControllerSnapshotTests/testNightFeedbackViewController.1.png
Binary file not shown.
Binary file removed
BIN
-42.1 KB
...e12_5/13.7/InstructionsBannerViewSnapshotTests/testAbbreviateInstructions.1.png
Binary file not shown.
Binary file removed
BIN
-42.8 KB
...tionsBannerViewSnapshotTests/testAbbreviateInstructionsIncludingDelimiter.1.png
Binary file not shown.
Binary file removed
BIN
-25.2 KB
.../13.7/InstructionsBannerViewSnapshotTests/testAbbreviateWestFremontAvenue.1.png
Binary file not shown.
Binary file removed
BIN
-37.3 KB
..._/iPhone12_5/13.7/InstructionsBannerViewSnapshotTests/testAdjacentShields.1.png
Binary file not shown.
Binary file removed
BIN
-38.3 KB
...ots__/iPhone12_5/13.7/InstructionsBannerViewSnapshotTests/testExitShields.1.png
Binary file not shown.
Binary file removed
BIN
-36.7 KB
...uctionsBannerViewSnapshotTests/testGenericShieldAndExitViewHighlightColor.1.png
Binary file not shown.
Binary file removed
BIN
-36.2 KB
...onsBannerViewSnapshotTests/testGenericShieldAndExitViewWithCustomDayStyle.1.png
Binary file not shown.
Binary file removed
BIN
-38.1 KB
...__/iPhone12_5/13.7/InstructionsBannerViewSnapshotTests/testGenericShields.1.png
Binary file not shown.
Binary file removed
BIN
-46.1 KB
...7/InstructionsBannerViewSnapshotTests/testInstructionsAndNextInstructions.1.png
Binary file not shown.
Binary file removed
BIN
-35.3 KB
...ts__/iPhone12_5/13.7/InstructionsBannerViewSnapshotTests/testLongDistance.1.png
Binary file not shown.
Binary file removed
BIN
-53.9 KB
.../iPhone12_5/13.7/InstructionsBannerViewSnapshotTests/testMultilinePrimary.1.png
Binary file not shown.
Binary file removed
BIN
-42.8 KB
..._5/13.7/InstructionsBannerViewSnapshotTests/testPrimaryShieldAndSecondary.1.png
Diff not rendered.
Binary file removed
BIN
-28.5 KB
...iPhone12_5/13.7/InstructionsBannerViewSnapshotTests/testSinglelinePrimary.1.png
Diff not rendered.
Binary file removed
BIN
-40.8 KB
...3.7/InstructionsBannerViewSnapshotTests/testSinglelinePrimaryAndSecondary.1.png
Diff not rendered.
Binary file removed
BIN
-38.5 KB
...sBannerViewSnapshotTests/testSinglelinePrimaryAndSecondaryWithNightShield.1.png
Diff not rendered.
Binary file removed
BIN
-38 KB
...ctionsBannerViewSnapshotTests/testSinglelinePrimaryAndSecondaryWithShield.1.png
Diff not rendered.
Binary file removed
BIN
-31.4 KB
...Phone12_5/13.7/InstructionsBannerViewSnapshotTests/testSweEngLongDistance.1.png
Diff not rendered.
Binary file removed
BIN
-31.6 KB
...ne12_5/13.7/InstructionsBannerViewSnapshotTests/testUkrainianLongDistance.1.png
Diff not rendered.
Binary file removed
BIN
-76.9 KB
...apshots__/iPhone12_5/13.7/InstructionsCardSnapshotTests/testLanesManeuver.1.png
Diff not rendered.
Binary file removed
BIN
-72.7 KB
...shots__/iPhone12_5/13.7/InstructionsCardSnapshotTests/testRegularManeuver.1.png
Diff not rendered.
Binary file removed
BIN
-83.5 KB
...hots__/iPhone12_5/13.7/InstructionsCardSnapshotTests/testTertiaryManeuver.1.png
Diff not rendered.
Binary file removed
BIN
-286 KB
...Tests/__Snapshots__/iPhone12_5/13.7/LaneSnapshotTests/verifyAllLanes-size.1.png
Diff not rendered.
Binary file removed
BIN
-481 KB
...Tests/__Snapshots__/iPhone12_5/13.7/LaneSnapshotTests/verifyAllLanes-size.2.png
Diff not rendered.
Binary file removed
BIN
-329 KB
...3.7/ManeuverArrowSnapshotTests/testManeuverArrowHandlesWaypointsCorrectly.1.png
Diff not rendered.
Binary file removed
BIN
-5.16 KB
...nTests/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testArrive.1.png
Diff not rendered.
Binary file removed
BIN
-5.17 KB
...ts/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testArriveNone.1.png
Diff not rendered.
Binary file removed
BIN
-3.62 KB
...sts/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testLeftUTurn.1.png
Diff not rendered.
Binary file removed
BIN
-13.7 KB
...__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testManeuverTypes.1.png
Diff not rendered.
Binary file removed
BIN
-6.02 KB
...ts/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testMergeRight.1.png
Diff not rendered.
Binary file removed
BIN
-3.56 KB
...ts/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testRightUTurn.1.png
Diff not rendered.
Binary file removed
BIN
-26 KB
...ts/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testRoundabout.1.png
Diff not rendered.
Binary file removed
BIN
-6.19 KB
...pshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testRoundaboutTurnLeft.1.png
Diff not rendered.
Binary file removed
BIN
-6.24 KB
...pshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testStraightRoundabout.1.png
Diff not rendered.
Binary file removed
BIN
-5.37 KB
...sts/__Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testTurnRight.1.png
Diff not rendered.
Binary file removed
BIN
-5.35 KB
...Snapshots__/iPhone12_5/13.7/ManeuverViewSnapshotTests/testTurnSlightRight.1.png
Diff not rendered.
Binary file removed
BIN
-9.52 KB
...__/iPhone12_5/13.7/UserHaloCourseViewSnapshotTests/testUserHaloCourseView.1.png
Diff not rendered.
Binary file removed
BIN
-10.8 KB
...CourseViewSnapshotTests/testUserHaloCourseViewColorWhenChangingAppearance.1.png
Diff not rendered.
Binary file removed
BIN
-10.4 KB
...CourseViewSnapshotTests/testUserHaloCourseViewColorWhenChangingAppearance.2.png
Diff not rendered.
Binary file removed
BIN
-12.4 KB
.../UserHaloCourseViewSnapshotTests/testUserHaloCourseViewMultipleDrawCycles.1.png
Diff not rendered.
Binary file removed
BIN
-5.46 KB
.../UserHaloCourseViewSnapshotTests/testUserHaloCourseViewMultipleDrawCycles.2.png
Diff not rendered.
Binary file removed
BIN
-10.7 KB
...pshotTests/testUserPuckCourseViewFillAndShadowColorWhenChangingAppearance.1.png
Diff not rendered.
Binary file removed
BIN
-11 KB
...pshotTests/testUserPuckCourseViewFillAndShadowColorWhenChangingAppearance.2.png
Diff not rendered.
Binary file removed
BIN
-11.1 KB
...seViewSnapshotTests/testUserPuckCourseViewPuckColorWhenChangingAppearance.1.png
Diff not rendered.
Binary file removed
BIN
-11.2 KB
...seViewSnapshotTests/testUserPuckCourseViewPuckColorWhenChangingAppearance.2.png
Diff not rendered.
Binary file removed
BIN
-4.68 KB
...hone12_5/13.7/UserPuckCourseViewSnapshotTests/testUserPuckCourseViewScale.1.png
Diff not rendered.
Binary file removed
BIN
-73.5 KB
...ssalViewControllerSnapshotTests/testBannerDismissalViewControllerDayStyle.1.png
Diff not rendered.
Binary file removed
BIN
-66.6 KB
...alViewControllerSnapshotTests/testBannerDismissalViewControllerNightStyle.1.png
Diff not rendered.
Binary file removed
BIN
-70.9 KB
.../iPhone14_3/15.4/BottomBannerSnapshotTests/testBottomBannerViewController.1.png
Diff not rendered.
Binary file removed
BIN
-70.9 KB
...3/15.4/BottomBannerSnapshotTests/testBottomBannerViewControllerNoSafeArea.1.png
Diff not rendered.
Binary file removed
BIN
-7.91 KB
...__/iPhone14_3/15.4/CarPlayCompassViewSnapshotTests/testCarPlayCompassView.1.png
Diff not rendered.
Binary file removed
BIN
-7.77 KB
...__/iPhone14_3/15.4/CarPlayCompassViewSnapshotTests/testCarPlayCompassView.2.png
Diff not rendered.
Binary file removed
BIN
-102 KB
...FeedbackViewControllerSnapshotTests/testDayDetailedFeedbackViewController.1.png
Diff not rendered.
Binary file removed
BIN
-102 KB
...FeedbackViewControllerSnapshotTests/testDayDetailedFeedbackViewController.2.png
Diff not rendered.
Binary file removed
BIN
-118 KB
..._3/15.4/FeedbackViewControllerSnapshotTests/testDayFeedbackViewController.1.png
Diff not rendered.
Binary file removed
BIN
-110 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.1.png
Diff not rendered.
Binary file removed
BIN
-109 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.2.png
Diff not rendered.
Binary file removed
BIN
-102 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.3.png
Diff not rendered.
Binary file removed
BIN
-102 KB
...edbackViewControllerSnapshotTests/testNightDetailedFeedbackViewController.4.png
Diff not rendered.
Binary file removed
BIN
-127 KB
.../15.4/FeedbackViewControllerSnapshotTests/testNightFeedbackViewController.1.png
Diff not rendered.
Binary file removed
BIN
-42.1 KB
...e14_3/15.4/InstructionsBannerViewSnapshotTests/testAbbreviateInstructions.1.png
Diff not rendered.
Binary file removed
BIN
-43.1 KB
...tionsBannerViewSnapshotTests/testAbbreviateInstructionsIncludingDelimiter.1.png
Diff not rendered.
Binary file removed
BIN
-25.2 KB
.../15.4/InstructionsBannerViewSnapshotTests/testAbbreviateWestFremontAvenue.1.png
Diff not rendered.
Binary file removed
BIN
-37.3 KB
..._/iPhone14_3/15.4/InstructionsBannerViewSnapshotTests/testAdjacentShields.1.png
Diff not rendered.
Binary file removed
BIN
-37 KB
...ots__/iPhone14_3/15.4/InstructionsBannerViewSnapshotTests/testExitShields.1.png
Diff not rendered.
Binary file removed
BIN
-31.7 KB
...uctionsBannerViewSnapshotTests/testGenericShieldAndExitViewHighlightColor.1.png
Diff not rendered.
Binary file removed
BIN
-31.1 KB
...onsBannerViewSnapshotTests/testGenericShieldAndExitViewWithCustomDayStyle.1.png
Diff not rendered.
Binary file removed
BIN
-37.1 KB
...__/iPhone14_3/15.4/InstructionsBannerViewSnapshotTests/testGenericShields.1.png
Diff not rendered.
Binary file removed
BIN
-39.3 KB
...4/InstructionsBannerViewSnapshotTests/testInstructionsAndNextInstructions.1.png
Diff not rendered.
Binary file removed
BIN
-35.2 KB
...ts__/iPhone14_3/15.4/InstructionsBannerViewSnapshotTests/testLongDistance.1.png
Diff not rendered.
Binary file removed
BIN
-53.8 KB
.../iPhone14_3/15.4/InstructionsBannerViewSnapshotTests/testMultilinePrimary.1.png
Diff not rendered.
Binary file removed
BIN
-33.8 KB
..._3/15.4/InstructionsBannerViewSnapshotTests/testPrimaryShieldAndSecondary.1.png
Diff not rendered.
Binary file removed
BIN
-28.5 KB
...iPhone14_3/15.4/InstructionsBannerViewSnapshotTests/testSinglelinePrimary.1.png
Diff not rendered.
Binary file removed
BIN
-38.7 KB
...5.4/InstructionsBannerViewSnapshotTests/testSinglelinePrimaryAndSecondary.1.png
Diff not rendered.
Binary file removed
BIN
-38.6 KB
...sBannerViewSnapshotTests/testSinglelinePrimaryAndSecondaryWithNightShield.1.png
Diff not rendered.
Binary file removed
BIN
-38 KB
...ctionsBannerViewSnapshotTests/testSinglelinePrimaryAndSecondaryWithShield.1.png
Diff not rendered.
Binary file removed
BIN
-31.2 KB
...Phone14_3/15.4/InstructionsBannerViewSnapshotTests/testSweEngLongDistance.1.png
Diff not rendered.
Binary file removed
BIN
-31.5 KB
...ne14_3/15.4/InstructionsBannerViewSnapshotTests/testUkrainianLongDistance.1.png
Diff not rendered.
Binary file removed
BIN
-80.7 KB
...apshots__/iPhone14_3/15.4/InstructionsCardSnapshotTests/testLanesManeuver.1.png
Diff not rendered.
Binary file removed
BIN
-76.5 KB
...shots__/iPhone14_3/15.4/InstructionsCardSnapshotTests/testRegularManeuver.1.png
Diff not rendered.
Binary file removed
BIN
-87.2 KB
...hots__/iPhone14_3/15.4/InstructionsCardSnapshotTests/testTertiaryManeuver.1.png
Diff not rendered.
Binary file removed
BIN
-285 KB
...Tests/__Snapshots__/iPhone14_3/15.4/LaneSnapshotTests/verifyAllLanes-size.1.png
Diff not rendered.
Binary file removed
BIN
-482 KB
...Tests/__Snapshots__/iPhone14_3/15.4/LaneSnapshotTests/verifyAllLanes-size.2.png
Diff not rendered.
Binary file removed
BIN
-328 KB
...5.4/ManeuverArrowSnapshotTests/testManeuverArrowHandlesWaypointsCorrectly.1.png
Diff not rendered.
Binary file removed
BIN
-3.62 KB
...sts/__Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testLeftUTurn.1.png
Diff not rendered.
Binary file removed
BIN
-13.7 KB
...__Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testManeuverTypes.1.png
Diff not rendered.
Binary file removed
BIN
-6.03 KB
...ts/__Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testMergeRight.1.png
Diff not rendered.
Binary file removed
BIN
-3.56 KB
...ts/__Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testRightUTurn.1.png
Diff not rendered.
Binary file removed
BIN
-26 KB
...ts/__Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testRoundabout.1.png
Diff not rendered.
Binary file removed
BIN
-6.2 KB
...pshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testRoundaboutTurnLeft.1.png
Diff not rendered.
Binary file removed
BIN
-6.26 KB
...pshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testStraightRoundabout.1.png
Diff not rendered.
Binary file removed
BIN
-5.38 KB
...sts/__Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testTurnRight.1.png
Diff not rendered.
Binary file removed
BIN
-5.37 KB
...Snapshots__/iPhone14_3/15.4/ManeuverViewSnapshotTests/testTurnSlightRight.1.png
Diff not rendered.
Binary file removed
BIN
-9.52 KB
...__/iPhone14_3/15.4/UserHaloCourseViewSnapshotTests/testUserHaloCourseView.1.png
Diff not rendered.
Binary file removed
BIN
-10.8 KB
...CourseViewSnapshotTests/testUserHaloCourseViewColorWhenChangingAppearance.1.png
Diff not rendered.
Binary file removed
BIN
-10.4 KB
...CourseViewSnapshotTests/testUserHaloCourseViewColorWhenChangingAppearance.2.png
Diff not rendered.
Binary file removed
BIN
-12.2 KB
.../UserHaloCourseViewSnapshotTests/testUserHaloCourseViewMultipleDrawCycles.1.png
Diff not rendered.
Binary file removed
BIN
-5.46 KB
.../UserHaloCourseViewSnapshotTests/testUserHaloCourseViewMultipleDrawCycles.2.png
Diff not rendered.
Binary file removed
BIN
-10.7 KB
...pshotTests/testUserPuckCourseViewFillAndShadowColorWhenChangingAppearance.1.png
Diff not rendered.
Binary file removed
BIN
-11 KB
...pshotTests/testUserPuckCourseViewFillAndShadowColorWhenChangingAppearance.2.png
Diff not rendered.
Binary file removed
BIN
-11.2 KB
...seViewSnapshotTests/testUserPuckCourseViewPuckColorWhenChangingAppearance.1.png
Diff not rendered.
Binary file removed
BIN
-11.3 KB
...seViewSnapshotTests/testUserPuckCourseViewPuckColorWhenChangingAppearance.2.png
Diff not rendered.
Binary file removed
BIN
-4.68 KB
...hone14_3/15.4/UserPuckCourseViewSnapshotTests/testUserPuckCourseViewScale.1.png
Diff not rendered.
Binary file added
BIN
+6.74 KB
..._/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testInfiniteMUTCDSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testInfiniteVennaSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+7.22 KB
...Tests/__Snapshots__/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testMUTCD.1.png
Oops, something went wrong.
Binary file added
BIN
+5.12 KB
...napshots__/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testMUTCD_blueText.1.png
Oops, something went wrong.
Binary file renamed
BIN
+5.18 KB
...aneuverViewSnapshotTests/testArrive.1.png → ...hotTests/testUnknownMUTCDSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+4.72 KB
..._/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testUnknownViennaSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+6.4 KB
...ests/__Snapshots__/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testVienna.1.png
Oops, something went wrong.
Binary file added
BIN
+6.54 KB
...shots__/iPhone14_3/15.5/SpeedLimitViewSnapshotTests/testVienna_blueBorder.1.png
Oops, something went wrong.
Binary file added
BIN
+6.74 KB
..._/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testInfiniteMUTCDSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testInfiniteVennaSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+7.22 KB
...Tests/__Snapshots__/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testMUTCD.1.png
Oops, something went wrong.
Binary file added
BIN
+5.12 KB
...napshots__/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testMUTCD_blueText.1.png
Oops, something went wrong.
Binary file renamed
BIN
+5.19 KB
...verViewSnapshotTests/testArriveNone.1.png → ...hotTests/testUnknownMUTCDSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+4.72 KB
..._/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testUnknownViennaSpeedLimit.1.png
Oops, something went wrong.
Binary file added
BIN
+6.4 KB
...ests/__Snapshots__/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testVienna.1.png
Oops, something went wrong.
Binary file added
BIN
+6.54 KB
...shots__/iPhone15_3/16.1/SpeedLimitViewSnapshotTests/testVienna_blueBorder.1.png
Oops, something went wrong.