blob: d45a6f76126c0ba7a596c68df741ccc450e601c9 (
plain)
1
2
3
4
5
6
7
8
9
10
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!")
}
}
|