DynamicTests.swift 405 B

123456789101112131415
  1. import XCTest
  2. @testable import Dynamic
  3. final class DynamicTests: XCTestCase {
  4. func testExample() {
  5. // This is an example of a functional test case.
  6. // Use XCTAssert and related functions to verify your tests produce the correct
  7. // results.
  8. XCTAssertEqual(Dynamic().text, "Hello, World!")
  9. }
  10. static var allTests = [
  11. ("testExample", testExample)
  12. ]
  13. }