Skip to content

Instantly share code, notes, and snippets.

@satan87
Created August 1, 2020 20:36
Show Gist options
  • Save satan87/3b86747c36f3e93bfb0516106d63d37d to your computer and use it in GitHub Desktop.
Save satan87/3b86747c36f3e93bfb0516106d63d37d to your computer and use it in GitHub Desktop.
func testGamePhaseOneprint() {
let game = Game(players: [Player(name: "Player1"), Player(name: "Player2")])
game.play()
game.play()
XCTAssertEqual(1, game.tokenPlayers[0])
XCTAssertEqual(0, game.tokenPlayers[1])
XCTAssertEqual(14, game.tokenToDistribute)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment