public void ValidateTheString()
        {
            Scrabble testScrabble = new Scrabble();

            Assert.AreEqual(false, testScrabble.Validate("Abc123"));
        }
        public void AddPoints_ReturnSum_Int()
        {
            Scrabble testScrabble = new Scrabble();

            Assert.AreEqual(20, testScrabble.Adding("qz"));
        }