From 5aa87b145d99a0f74fb267e11eef2e7305646b7d Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 24 Apr 2024 02:07:10 -0600 Subject: rename tests --- Tests/LichessClientTests/LichessClientTests.swift | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Tests/LichessClientTests/LichessClientTests.swift (limited to 'Tests/LichessClientTests') diff --git a/Tests/LichessClientTests/LichessClientTests.swift b/Tests/LichessClientTests/LichessClientTests.swift new file mode 100644 index 0000000..129a403 --- /dev/null +++ b/Tests/LichessClientTests/LichessClientTests.swift @@ -0,0 +1,35 @@ +import XCTest + +@testable import LichessClient + +final class LichessClientTestsPac: XCTestCase { + + func testTablebaseLookup() async throws { + let client = LichessClient() + + let tablebaseLookup = try await client.getStandardTablebase( + fen: "4k3/6KP/8/8/8/8/7p/8_w_-_-_0_1") + guard let dtm = tablebaseLookup.dtm else { + XCTAssert(false == true) + return + } + XCTAssert(dtm == 17) + + var found = false + guard let moves = tablebaseLookup.moves else { + XCTAssert(true == false) + return + } + for move in moves { + guard let uci = move.uci else { + XCTAssert(false == true) + return + } + if uci == "h7h8q" { + found = true + break + } + } + XCTAssert(found == true) + } +} -- cgit v1.2.3