Example #1
0
        public void ToStringTest()
        {
            CustomPolinomial a = new CustomPolinomial(new int[4] {
                4, 3, 1, 0
            }, new double[4] {
                2, 2, 2, 2
            });

            Assert.AreNotEqual("", a.ToString());
        }