public void ShouldScoreArrayTie()
        {
            ScoreWithPrivateArray scoreA = new ScoreWithPrivateArray(new List <int> {
                6, 6, 6
            });
            ScoreWithPrivateArray scoreB = new ScoreWithPrivateArray(new List <int> {
                6, 6, 6
            });

            scoreA.GetScore(scoreB).Should().Be("0 0");
        }
        public void ShouldScoreArraySelfWinner()
        {
            ScoreWithPrivateArray scoreA = new ScoreWithPrivateArray(new List <int> {
                6, 6, 6
            });
            ScoreWithPrivateArray scoreB = new ScoreWithPrivateArray(new List <int> {
                3, 4, 5
            });

            scoreA.GetScore(scoreB).Should().Be("3 0");
        }
        public void ShouldScoreArrayNonZeroTie()
        {
            ScoreWithPrivateArray scoreA = new ScoreWithPrivateArray(new List <int> {
                6, 6, 6
            });
            ScoreWithPrivateArray scoreB = new ScoreWithPrivateArray(new List <int> {
                3, 6, 10
            });

            scoreA.GetScore(scoreB).Should().Be("1 1");
        }