Files
smpark.in/Tests/AppTests/AppTests.swift
2023-03-11 22:43:23 -08:00

13 lines
197 B
Swift

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