Пример #1
0
        public void FormatUsingDefaults()
        {
            PercentFormatter fmt = new PercentFormatter("en-US");

            Assert.AreEqual("25.00 %", fmt.Format(0.25));
            Assert.AreEqual("25.34 %", fmt.Format(0.2534));

            fmt = new PercentFormatter("sr-SP-Latn");
            Assert.AreEqual("25,00%", fmt.Format(0.25));
            Assert.AreEqual("25,34%", fmt.Format(0.2534));
        }
Пример #2
0
        public void FormatUsingCustomSettings()
        {
            PercentFormatter fmt = new PercentFormatter("en-US");

            fmt.DecimalDigits   = 0;
            fmt.PositivePattern = 1;
            Assert.AreEqual("25%", fmt.Format(0.25));
            Assert.AreEqual("25%", fmt.Format(0.2534));

            fmt = new PercentFormatter("sr-SP-Latn");
            fmt.DecimalDigits = 1;
            Assert.AreEqual("25,0%", fmt.Format(0.25));
            Assert.AreEqual("25,3%", fmt.Format(0.2534));
        }
Пример #3
0
        public void FormatNonNumber()
        {
            PercentFormatter fmt = new PercentFormatter();

            Assert.Throws <ArgumentException>(() => fmt.Format("not a number"));
        }
Пример #4
0
        public void FormatNullValue()
        {
            PercentFormatter fmt = new PercentFormatter();

            Assert.Throws <ArgumentNullException>(() => fmt.Format(null));
        }