public GameConfiguratorData(IGameDef gameDef, GameControlKind whiteGameControl, GameControlKind blackGameControl) { GameDef = gameDef; WhiteGameControl = whiteGameControl; BlackGameControl = blackGameControl; }
public void GetDef_ByGameControlKind_GetGameControlNotNull([Values] GameControlKind gameControlKind) { var gameControl = GameControlRepository.GetDef(gameControlKind); Assert.IsNotNull(gameControl, $"gameControl == null for {gameControlKind}"); }