예제 #1
0
        public void Scrabble_InputDG_2()
        {
            //Arrange
            Scrabble obj = new Scrabble();


            //Act
            int output = obj.Count("qUIZ%!");

            //Assert
            Assert.Equal(22, output);
        }
예제 #2
0
        public void Scrabble_InputAEIOULNRST_1()

        {
            //Arrange
            Scrabble obj = new Scrabble();


            //Act
            int output = obj.Count("T");

            //Assert
            Assert.Equal(1, output);
        }