diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 5bde459f..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,74 +0,0 @@ -references: - defaults: &defaults - macos: - xcode: "12.0.0" - shell: /bin/bash --login -eo pipefail - working_directory: ~/Nimble-Snapshots - environment: - BUNDLE_PATH: vendor/bundle - - restore_bundle_cache: &restore_bundle_cache - restore_cache: - keys: - - v1-gems-{{ checksum "Gemfile.lock" }} - # Fall back to using the latest cache if no exact match is found. - - v1-gems- - - save_bundle_cache: &save_bundle_cache - save_cache: - key: v1-gems-{{ checksum "Gemfile.lock" }} - paths: - - vendor/bundle - - bunde_install: &bunde_install - run: - name: "Install bundle" - command: | - bundle -v - bundle check || bundle install - -version: 2 -jobs: - tests: - <<: *defaults - steps: - - checkout - - *restore_bundle_cache - - *bunde_install - - *save_bundle_cache - - run: - name: "Run Danger" - command: bundle exec danger - - run: - name: "Create output dir" - command: mkdir output - - run: - name: "Run tests in Swift 4.2" - command: xcodebuild -workspace 'Bootstrap/Bootstrap.xcworkspace' -sdk 'iphonesimulator' -scheme 'Bootstrap' -destination 'name=iPhone 8' SWIFT_VERSION=4.2 build test | tee output/xcodebuild_swift4.2.log | xcpretty --color --simple - - run: - name: "Run tests in Swift 5.0" - command: xcodebuild -workspace 'Bootstrap/Bootstrap.xcworkspace' -sdk 'iphonesimulator' -scheme 'Bootstrap' -destination 'name=iPhone 8' SWIFT_VERSION=5.0 build test | tee output/xcodebuild_swift5.0.log | xcpretty --color --simple - - run: - name: "Run Carthage integration test" - command: sh carthage-xcode-12.sh bootstrap --platform iOS && xcodebuild | xcpretty --color --simple - - run: - name: "Swiftlint" - command: | - HOMEBREW_NO_AUTO_UPDATE=1 brew install swiftlint - swiftlint lint --no-cache --reporter junit | tee result.xml - - store_artifacts: - path: result.xml - - store_artifacts: - path: output/ - - store_artifacts: - path: ~/Nimble-Snapshots/Bootstrap/BootstrapTests/FailureDiffs/ - - store_test_results: - path: result.xml - - store_test_results: - path: output/ - -workflows: - version: 2 - build-and-test: - jobs: - - tests diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml new file mode 100755 index 00000000..0a69f5ed --- /dev/null +++ b/.github/workflows/build-and-test.yml @@ -0,0 +1,69 @@ +name: Testing +on: [push, pull_request] + +jobs: + test: + name: Build and Test Nimble-Snapshots + runs-on: macOS-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2.3.4 + + - name: Setup Xcode version + uses: maxim-lobanov/setup-xcode@v1.2.3 + with: + xcode-version: 12.4 + + - name: Set up Ruby 2.6 + uses: ruby/setup-ruby@v1.66.0 + with: + ruby-version: 2.6 + bundler-cache: true + + - name: Danger action + uses: MeilCli/danger-action@v5.0.1 + with: + plugins_file: 'Gemfile' + install_path: 'vendor/bundle' + danger_file: 'Dangerfile' + danger_id: 'danger-pr' + env: + DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: "Create output dir" + run: mkdir output + + - name: Run tests in Swift 4.2 + run: xcodebuild -workspace 'Bootstrap/Bootstrap.xcworkspace' -sdk 'iphonesimulator' -scheme 'Bootstrap' -destination 'name=iPhone 8' SWIFT_VERSION=4.2 build test | tee output/xcodebuild_swift4.2.log + + - name: Run tests in Swift 5.0 + run: xcodebuild -workspace 'Bootstrap/Bootstrap.xcworkspace' -sdk 'iphonesimulator' -scheme 'Bootstrap' -destination 'name=iPhone 8' SWIFT_VERSION=5.0 build test | tee output/xcodebuild_swift5.0.log + + - name: Run Carthage integration test + run: sh carthage-xcode-12.sh bootstrap --platform iOS && xcodebuild + shell: bash + + - name: Swiftlint + run: | + swiftlint lint --no-cache --reporter junit | tee result.xml + + - name: Store Swiftlint artifacts + uses: actions/upload-artifact@v2 + with: + name: Swiftlint + path: | + result.xml + + - name: Store output artifacts + uses: actions/upload-artifact@v2 + with: + name: Output + path: | + output + + - name: Store FailureDiffs artifacts + uses: actions/upload-artifact@v2 + with: + name: FailureDiffs + path: | + Bootstrap/BootstrapTests/FailureDiffs/ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name__iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_11_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_11_2_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_11_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_0_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_0_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_1_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_1_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_1_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_and_identifier_bootstrap_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_boostrap_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_11_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_11_2_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_11_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_0_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_0_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_1_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_1_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_1_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1b4f7f22..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/BootstrapTests/something_custom_with_model_and_OS_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityM_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_AccessibilityXXXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_L_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_M_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_S_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_132x132@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_375x667@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_44x44@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_88x88@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XS_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/in_some_context__has_a_valid_snapshot_with_model_and_OS_in_name_XXXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 9673f290..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 1feeb335..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityM_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 8b2e0e1d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 554eb35b..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 0fc18035..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_AccessibilityXXXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 1ab53cb5..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_L_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 3d5af6fa..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_M_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_132x132@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_375x667@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_44x44@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_88x88@2x.png deleted file mode 100644 index 603909cc..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_S_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index ed9fdc1a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_132x132@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_375x667@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_44x44@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_88x88@2x.png deleted file mode 100644 index f4f7d51d..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XS_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index ae3c094a..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXL_iPhone_14_4_375x667@2x.png diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_132x132@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_132x132@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_132x132@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_375x667@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_375x667@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_44x44@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_44x44@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_44x44@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_88x88@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_88x88@2x.png deleted file mode 100644 index ddb910be..00000000 Binary files a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_12_2_88x88@2x.png and /dev/null differ diff --git a/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_14_0_375x667@2x.png b/Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_14_4_375x667@2x.png similarity index 100% rename from Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_14_0_375x667@2x.png rename to Bootstrap/BootstrapTests/ReferenceImages/DynamicTypeTests/something_custom_with_model_and_OS_XXXL_iPhone_14_4_375x667@2x.png