我正在用Xcode在Swift中编写一个应用程序,并希望编写单元测试来测试类。 要测试X01Match类,初始化程序需要一个GameResult对象。因此,我创建了以下内容,但是出现了一个编译错误,但我不知道该如何解决。有什么建议吗?
func testGameResult() {
var gameResult = GameResult.init(gameId: "testMatch", name0: "TestPlayer1", name1: "TestPlayer2")
var match = X01Match.init(beginScore: 100, nrOfSets: 1, nrOfLegs: 3, nrOfPlayers: 2, gameResult: gameResult)
}