public void Scrabble_InputDG_2() { //Arrange Scrabble obj = new Scrabble(); //Act int output = obj.Count("qUIZ%!"); //Assert Assert.Equal(22, output); }
public void Scrabble_InputAEIOULNRST_1() { //Arrange Scrabble obj = new Scrabble(); //Act int output = obj.Count("T"); //Assert Assert.Equal(1, output); }