Files
smpark.in/Vapor3.1.10/Tests/AppTests/AppTests.swift
2020-06-01 14:31:12 -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),
]
}