NextcloudSnapshotTests.swift 570 B

123456789101112131415161718192021222324
  1. //
  2. // NextcloudSnapshotTests.swift
  3. // NextcloudSnapshotTests
  4. //
  5. // Created by Milen on 06.06.23.
  6. // Copyright © 2023 Marino Faggiana. All rights reserved.
  7. //
  8. import XCTest
  9. import SnapshotTesting
  10. import SnapshotTestingHEIC
  11. import PreviewSnapshotsTesting
  12. import SwiftUI
  13. @testable import Nextcloud
  14. final class NextcloudSnapshotTests: XCTestCase {
  15. func test_HUDView() {
  16. HUDView_Previews.snapshots.assertSnapshots(as: .imageHEIC)
  17. }
  18. func test_CapalitiesView() {
  19. NCCapabilitiesView_Previews.snapshots.assertSnapshots(as: .imageHEIC)
  20. }
  21. }