Exemplo n.º 1
0
        public void SetWord_SetWord_String()
        {
            //Arrange
            string word    = "cracker";
            Gram   newGram = new Gram(word);

            //Act
            string updatedWord = "biscuit";

            newGram.SetWord(updatedWord);
            string result = newGram.GetWord();

            //Assert
            Assert.AreEqual(updatedWord, result);
        }