This commit is contained in:
2023-03-11 22:43:23 -08:00
parent 56c8f8515f
commit 291b224d97
264 changed files with 561 additions and 25571 deletions

View File

@@ -0,0 +1,12 @@
import XCTest
@testable import App
class AppTests: XCTestCase {
func testStub() throws {
XCTAssert(true)
}
static let allTests = [
("testStub", testStub),
]
}

11
Tests/LinuxMain.swift Normal file
View File

@@ -0,0 +1,11 @@
#if os(Linux)
import XCTest
@testable import AppTests
XCTMain([
// AppTests
testCase(AppTests.allTests),
])
#endif