Ejemplo n.º 1
0
        public void GetTimeZone_Test()
        {
            // Correct
            var tz = LocalizationUtils.GetTimeZone("新西兰标准时间");

            Assert.AreEqual("New Zealand Standard Time", tz.StandardName);

            // Wrong
            tz = LocalizationUtils.GetTimeZone("China Time");
            Assert.AreEqual(TimeZoneInfo.Local, tz);
        }