vapor again

This commit is contained in:
2023-09-11 21:08:38 -07:00
parent 96073ed048
commit 7f3586cd36
23 changed files with 424 additions and 39 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