mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-05-19 15:50:35 +00:00
12 lines
361 B
Swift
12 lines
361 B
Swift
import XCTest
|
|
@testable import ChessKitEngine
|
|
|
|
final class ChessKitEngineTests: XCTestCase {
|
|
func testExample() throws {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
|
// results.
|
|
XCTAssertEqual(ChessKitEngine().text, "Hello, World!")
|
|
}
|
|
}
|