Пример #1
0
        public void TestToString()
        {
            var expected = SentenceWithTags;
            
            var t = new TaggedText(SentenceWithTags);
            var actual = t.ToString();

            Assert.AreEqual(expected, actual, "Didn't produce the original sentence.");
        }