diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-26 16:11:04 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-26 16:11:04 +0200 |
| commit | 575722f458b382e5fd847087c748439dfc88e802 (patch) | |
| tree | 681c98c60973d8171f4e8962825baedc50572045 /Tests/PatternsTests | |
Initial Commit
Diffstat (limited to 'Tests/PatternsTests')
| -rw-r--r-- | Tests/PatternsTests/PatternsTests.swift | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/PatternsTests/PatternsTests.swift b/Tests/PatternsTests/PatternsTests.swift new file mode 100644 index 0000000..d45a6f7 --- /dev/null +++ b/Tests/PatternsTests/PatternsTests.swift @@ -0,0 +1,11 @@ +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!") + } +} |