コード例 #1
0
ファイル: RoundInteractionSteps.cs プロジェクト: Gherks/slask
        public void ThenFetchedAdvancingPlayersInRoundShouldBeExactly(int roundIndex, string commaSeparatedPlayerNames)
        {
            RoundBase     round       = createdRounds[roundIndex];
            List <string> playerNames = StringUtility.ToStringList(commaSeparatedPlayerNames, ",");

            RoundInteractionStepUtility.FetchingAdvancingPlayersInRoundYieldsGivenPlayerNames(round, playerNames);
        }
コード例 #2
0
ファイル: RoundInteractionSteps.cs プロジェクト: Gherks/slask
        public void ThenFetchedAdvancingPlayersInRoundShouldBeEmpty(int roundIndex)
        {
            RoundBase round = createdRounds[roundIndex];

            RoundInteractionStepUtility.FetchingAdvancingPlayersInRoundYieldsNull(round);
        }