Example #1
0
 public void SelectSortArray_10_ArrayLenghtTo0_ShouldException(int[] x)
 {
     Assert.Throws <ArgumentException>(() => ArrayRank1.SelectSortArray_10(x));
 }
Example #2
0
        public void SelectSortArray_10Test(int[] x, int[] expected)
        {
            int[] actual = ArrayRank1.SelectSortArray_10(x);

            Assert.AreEqual(expected, actual);
        }