Exemplo n.º 1
0
 public void TestSortByMaxInRow(TestData testdata)
 {
     int[][] result = SortClass.JuggedArraySort(testdata.SourceArray, testdata.Option, testdata.OrderOption);
     Assert.That(result, Is.EqualTo(testdata.ExpectedArray));
 }