TauriTests.swift 476 B

123456789101112131415
  1. // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. import XCTest
  5. @testable import Tauri
  6. final class TauriTests: XCTestCase {
  7. func testExample() throws {
  8. // This is an example of a functional test case.
  9. // Use XCTAssert and related functions to verify your tests produce the correct
  10. // results.
  11. XCTAssertEqual(Tauri().text, "Hello, World!")
  12. }
  13. }