Ejemplo n.º 1
0
        public void TestMethod1()
        {
            // arrange
            int         n    = 3;
            DoublePoint list = new DoublePoint();

            // act
            list = DoublePoint.GenerateList(n);
            DoublePoint.ShowList(list);
            int difference = DoublePoint.FindDifference(list);

            // assert
            Assert.AreNotEqual(list.data, null);
            Assert.AreNotEqual(Console.Out, null);
            Assert.AreNotEqual(difference, null);
        }