예제 #1
0
        public void Return_score_for_4ofAKind(int[] dice, int expected)
        {
            CategoryLogic categoryLogic = new CategoryLogic();

            Assert.Equal(expected, categoryLogic.NumberOfAKind(dice, 4));
        }