Esempio n. 1
0
        public void BreakIntoAnnotationPiecesTest002()
        {
            string test = "This (is (an) (annotation)) (\"test\")";

            string[] pieces = Annotation.BreakIntoAnnotationPieces(test);
            Assert.Equal <int>(2, pieces.Length);
            Assert.Equal("(is (an) (annotation))", pieces[0]);
            Assert.Equal("(\"test\")", pieces[1]);
        }