Exemplo n.º 1
0
        public void AvailableLocales()
        {
            int n = Icu.CountAvailableLocales();

            Assert.IsTrue(n > 5);             // Should never get this low.
            string locale = Icu.GetAvailableLocale(0);

            Assert.IsTrue(locale.Length > 0);
            // Can't test for a locale name because new ones may be added first.
            //Assert.AreEqual("af", locale);
        }