Esempio n. 1
0
        public void Scrabble_GetPoints_Points2()
        {
            Scrabbles newScrabble = new Scrabbles();
            int       score       = newScrabble.GetPoints("zzzf");

            Assert.AreEqual(34, score);
        }
Esempio n. 2
0
        public static void Main()
        {
            Console.WriteLine("Please Enter a word, We shall Tell you the points");
            string input = Console.ReadLine();

            Scrabbles newScrabble = new Scrabbles();
            int       point       = newScrabble.GetPoints(input);

            Console.WriteLine(input + " is worth " + point);
        }