Defined the Core library in the package.

This commit is contained in:
2023-04-15 01:20:13 +02:00
parent 07521d4e93
commit fc1e9d5248
3 changed files with 6 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
import XCTest
@testable import SwiftLibs
final class SwiftLibsTests: 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(SwiftLibs().text, "Hello, World!")
}
}