Files
smpark.in/Tests/AppTests/AppTests.swift
2023-09-11 21:08:38 -07:00

13 lines
197 B
Swift

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