public void CartesianProduct_0ValueNull_ValidateNotNull0Value()
 {
     AssertValidation.NotNullAll(
         () => CombinationUtils.CartesianProduct <int>(null, new int[0]).ToArray(),
         "Values",
         0);
 }
Beispiel #2
0
 public void QuickSortArrayAndAssociatedArray_AssociatedArray0ArrayNull_ValidateIsNull()
 {
     AssertValidation.NotNullAll(
         () => SortUtils.QuickSort(true, elementComparer, new Element[6], null as Element[], new Element[6]),
         "AssociatedLists", 0);
 }
 public void Combine_1Separato0StringNull_ValidateIsNull0String()
 {
     AssertValidation.NotNullAll(
         () => StringUtils.Combine('\n', null, ""),
         "Strings", 0);
 }
Beispiel #4
0
 public void QuickSortArrayAndAssociatedArray_AssociatedArray0ArrayNull_ValidateIsNull()
 {
     AssertValidation.NotNullAll(
         () => SortUtils.QuickSort <int, int>(true, new int[6], null, new int[6]),
         "AssociatedLists", 0);
 }