From 575722f458b382e5fd847087c748439dfc88e802 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 26 Apr 2023 16:11:04 +0200 Subject: Initial Commit --- Tests/PatternsTests/PatternsTests.swift | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Tests/PatternsTests/PatternsTests.swift (limited to 'Tests/PatternsTests') 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!") + } +} -- cgit