Beispiel #1
0
        public void PostProcessTest2()
        {
            ViePP  target   = new ViePP();
            string text     = "‘ê ‘ổ ‘ô";
            string expected = "ề ‘ổ ồ";
            string actual;

            actual = target.PostProcess(text);
            Assert.AreEqual(expected, actual);
        }
Beispiel #2
0
        public void PostProcessTest1()
        {
            ViePP  target   = new ViePP();
            string text     = "ưon";
            string expected = "ươn";
            string actual;

            actual = target.PostProcess(text);
            Assert.AreEqual(expected, actual);
        }