From 8b0b5b394e5eca8538956fecbaa70ca66fdde24b Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 26 Apr 2023 16:25:43 +0200 Subject: Add the files --- Tests/PatternsTests/DummyTest.swift | 9 +++++++++ Tests/PatternsTests/PatternsTests.swift | 11 ----------- 2 files changed, 9 insertions(+), 11 deletions(-) create mode 100644 Tests/PatternsTests/DummyTest.swift delete mode 100644 Tests/PatternsTests/PatternsTests.swift (limited to 'Tests/PatternsTests') diff --git a/Tests/PatternsTests/DummyTest.swift b/Tests/PatternsTests/DummyTest.swift new file mode 100644 index 0000000..badad26 --- /dev/null +++ b/Tests/PatternsTests/DummyTest.swift @@ -0,0 +1,9 @@ +import XCTest +@testable import Patterns + +final class PatternTests: XCTestCase { + func testExample() throws { + // Should update when I figure out how to best test SwiftUI views + XCTAssertEqual(true, true) + } +} diff --git a/Tests/PatternsTests/PatternsTests.swift b/Tests/PatternsTests/PatternsTests.swift deleted file mode 100644 index d45a6f7..0000000 --- a/Tests/PatternsTests/PatternsTests.swift +++ /dev/null @@ -1,11 +0,0 @@ -import XCTest -@testable import Patterns - -final class PatternsTests: XCTestCase { - func testExample() throws { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct - // results. - XCTAssertEqual(Patterns().text, "Hello, World!") - } -} -- cgit