Beispiel #1
0
        public void NullTest()
        {
            string actual   = BigDecimal.IntListToString(null, 0);
            string expected = "";

            Assert.AreEqual(expected, actual);
        }
Beispiel #2
0
        public void EmptyTest()
        {
            string actual   = BigDecimal.IntListToString(new List <int>(), 0);
            string expected = "";

            Assert.AreEqual(expected, actual);
        }
Beispiel #3
0
        public void Num0598Dot20836610_Test()
        {
            var list = new List <int> {
                0, 1, 6, 6, 3, 8, 0, 2, 8, 9, 5, 0
            };
            string actual   = BigDecimal.IntListToString(list, 4);
            string expected = "0598.20836610";

            Assert.AreEqual(expected, actual);
        }
Beispiel #4
0
        public void Num0Dot15_Test()
        {
            var list = new List <int> {
                5, 1, 0
            };
            string actual   = BigDecimal.IntListToString(list, 1);
            string expected = "0.15";

            Assert.AreEqual(expected, actual);
        }
Beispiel #5
0
        public void Num56Dot7_Test()
        {
            var list = new List <int> {
                7, 6, 5
            };
            string actual   = BigDecimal.IntListToString(list, 2);
            string expected = "56.7";

            Assert.AreEqual(expected, actual);
        }
Beispiel #6
0
        public void SimpleTest()
        {
            var list = new List <int> {
                5
            };
            string actual   = BigDecimal.IntListToString(list, 1);
            string expected = "5";

            Assert.AreEqual(expected, actual);
        }