diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-26 16:25:43 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-26 16:25:43 +0200 |
| commit | 8b0b5b394e5eca8538956fecbaa70ca66fdde24b (patch) | |
| tree | d627bb4c4870f43dbc926df5d65dcc84cd2c53de /Tests/PatternsTests | |
| parent | 08da0038960b2b37c88e793c9b8dbe33e7884af5 (diff) | |
Add the files
Diffstat (limited to 'Tests/PatternsTests')
| -rw-r--r-- | Tests/PatternsTests/DummyTest.swift | 9 | ||||
| -rw-r--r-- | Tests/PatternsTests/PatternsTests.swift | 11 |
2 files changed, 9 insertions, 11 deletions
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!") - } -} |