Ejemplo n.º 1
0
        public void RunFontsModel4()
        {
            var models = new RunFontsModel();

            models.HighAnsi = "voyez pltuôt!";
            Assert.IsTrue(models.HighAnsi == "voyez pltuôt!");
        }
Ejemplo n.º 2
0
        public void RunFontsModel3()
        {
            var models = new RunFontsModel();

            models.EastAsia = "c'est ça!";
            Assert.IsTrue(models.EastAsia == "c'est ça!");
        }
Ejemplo n.º 3
0
        public void RunFontsModel()
        {
            var models = new RunFontsModel();

            models.Ascii = "oui, c'est la vie!";
            Assert.IsTrue(models.Ascii == "oui, c'est la vie!");
        }
Ejemplo n.º 4
0
        public void RunFontsModel2()
        {
            var models = new RunFontsModel();

            models.ComplexScript = "cool";
            Assert.IsTrue(models.ComplexScript == "cool");
        }
        public void Test_Model_RunFontsModel()
        {
            RunFontsModel testRFM = new RunFontsModel();

            testRFM.Ascii         = "toto";
            testRFM.ComplexScript = "toto";
            Assert.AreEqual(testRFM.Ascii, testRFM.ComplexScript);

            testRFM.EastAsia = "toto";
            testRFM.HighAnsi = "toto";
            Assert.AreEqual(testRFM.EastAsia, testRFM.HighAnsi);
        }