Ejemplo n.º 1
0
        public void TestMethodLong()
        {
            long[] deneme = new long[] { 10, 5, 2, 4, 9, 11, 45 };
            Array.Sort(deneme);
            long[]  array    = new long[] { 10, 5, 2, 4, 9, 11, 45 };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 2
0
        public void TestMethodFloat()
        {
            float[] deneme = new float[] { 3.5f, 2.2f, 1.4f, 8.1f, 5.3f };
            Array.Sort(deneme);
            float[] array    = new float[] { 3.5f, 2.2f, 1.4f, 8.1f, 5.3f };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 3
0
        public void TestMethodDecimal()
        {
            decimal[] deneme = new decimal[] { 35, 25, 15, 10, 2, 5, 4 };
            Array.Sort(deneme);
            decimal[] array    = new decimal[] { 35, 25, 15, 10, 2, 5, 4 };
            MyClass   MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 4
0
        public void TestMethodDouble()
        {
            double[] deneme = new double[] { 15.2, 1.3, 5.9, 2.5, 8.3 };
            Array.Sort(deneme);
            double[] array    = new double[] { 15.2, 1.3, 5.9, 2.5, 8.3 };
            MyClass  MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 5
0
        public void TestMethodString()
        {
            string[] deneme = new string[] { "antep", "adana", "yozgat", "ankara", "istanbul", "malatya", "edirne" };
            Array.Sort(deneme);
            string[] array    = new string[] { "antep", "adana", "yozgat", "ankara", "istanbul", "malatya", "edirne" };
            MyClass  MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 6
0
        public void TestMethodInt()
        {
            int[] deneme = new int[] { 15, 9, 8, 54, 45, 2, 67, 15, 68 };
            Array.Sort(deneme);
            int[]   array    = new int[] { 15, 9, 8, 54, 45, 2, 67, 15, 68 };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 7
0
        public void TestMethodListString()
        {
            List <string> deneme = new List <string>()
            {
                "antep", "adana", "yozgat", "ankara", "istanbul", "malatya", "edirne"
            };

            deneme.Sort();
            List <string> array = new List <string>()
            {
                "antep", "adana", "yozgat", "ankara", "istanbul", "malatya", "edirne"
            };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 8
0
        public void TestMethodListInt()
        {
            List <int> deneme = new List <int>()
            {
                15, 9, 8, 54, 45, 2, 67, 15, 68
            };

            deneme.Sort();
            List <int> array = new List <int>()
            {
                15, 9, 8, 54, 45, 2, 67, 15, 68
            };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 9
0
        public void TestMethodListDecimal()
        {
            List <decimal> deneme = new List <decimal>()
            {
                35, 25, 15, 10, 2, 5, 4
            };

            deneme.Sort();
            List <decimal> array = new List <decimal>()
            {
                35, 25, 15, 10, 2, 5, 4
            };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            array.Sort();
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 10
0
        public void TestMethodListFloat()
        {
            List <float> deneme = new List <float>()
            {
                3.5f, 2.2f, 1.4f, 8.1f, 5.3f
            };

            deneme.Sort();
            List <float> array = new List <float>()
            {
                3.5f, 2.2f, 1.4f, 8.1f, 5.3f
            };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            array.Sort();
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 11
0
        public void TestMethodListDouble()
        {
            List <double> deneme = new List <double>()
            {
                15.2, 1.3, 5.9, 2.5, 8.3
            };

            deneme.Sort();
            List <double> array = new List <double>()
            {
                15.2, 1.3, 5.9, 2.5, 8.3
            };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            array.Sort();
            CollectionAssert.AreEqual(deneme, array);
        }
Ejemplo n.º 12
0
        public void TestMethodListLong()
        {
            List <long> deneme = new List <long>()
            {
                10, 5, 2, 4, 9, 11, 45
            };

            deneme.Sort();
            List <long> array = new List <long>()
            {
                10, 5, 2, 4, 9, 11, 45
            };
            MyClass MyObject = new MyClass();

            MyObject.MyMethod(array);
            array.Sort();
            CollectionAssert.AreEqual(deneme, array);
        }