Beispiel #1
0
        public void ThenFetchedAdvancingPlayersInRoundShouldBeExactly(int roundIndex, string commaSeparatedPlayerNames)
        {
            RoundBase     round       = createdRounds[roundIndex];
            List <string> playerNames = StringUtility.ToStringList(commaSeparatedPlayerNames, ",");

            RoundInteractionStepUtility.FetchingAdvancingPlayersInRoundYieldsGivenPlayerNames(round, playerNames);
        }
Beispiel #2
0
        public void ThenFetchedAdvancingPlayersInRoundShouldBeEmpty(int roundIndex)
        {
            RoundBase round = createdRounds[roundIndex];

            RoundInteractionStepUtility.FetchingAdvancingPlayersInRoundYieldsNull(round);
        }