Example #1
0
        public void TestMethod10()
        {
            int[] arr    = new int[] { 3, 2, 1 };
            bool  result = false;

            Assert.AreEqual(result, Nummern.IstSortiert(arr));
        }
Example #2
0
        public void TestMethod2()
        {
            int[] arr    = new int[] { 56, 98, 123, 67, 742, 1024, 32, 90969 };
            bool  result = false;

            Assert.AreEqual(result, Nummern.IstSortiert(arr));
        }
Example #3
0
        public void TestMethod5()
        {
            int[] arr    = new int[] { 1, 2, 3 };
            bool  result = true;

            Assert.AreEqual(result, Nummern.IstSortiert(arr));
        }
Example #4
0
        public void TestMethod1()
        {
            int[] arr    = new int[] { 1, 4, 13, 97, 508, 1047, 20058 };
            bool  result = true;

            Assert.AreEqual(result, Nummern.IstSortiert(arr));
        }