aboutsummaryrefslogtreecommitdiff
path: root/Tests/SwiftChessNeoTests/VariantTests.swift
blob: 896f18f709ce3c8cabf146c2db192fe35b7590ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  VariantTests.swift
//  
//
//  Created by Navan Chauhan on 4/17/24.
//

import XCTest
@testable import SwiftChessNeo

final class VariantTests: XCTestCase {
    
    func testVariantEnum() {
        let game = Game()
        
        XCTAssertEqual(game.variant.isUpsideDown, false)
        XCTAssertEqual(game.variant.isStandard, true)
    }
}