mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-26 09:05:46 +00:00
15 lines
412 B
Swift
15 lines
412 B
Swift
import XCTest
|
|
@testable import XcodesKit
|
|
|
|
final class XcodesKitTests: XCTestCase {
|
|
func testExample() {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
|
// results.
|
|
XCTAssertEqual(XcodesKit().text, "Hello, World!")
|
|
}
|
|
|
|
static var allTests = [
|
|
("testExample", testExample),
|
|
]
|
|
}
|