diff options
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!") + } +} |