Exemplo n.º 1
0
 public void PartitionBy_WithEmptyListAndEmptyCount_Throws()
 => Throws <ArgumentOutOfRangeException>(
     () => LIST_EMPTY.PartitionBy(0).ToList());
Exemplo n.º 2
0
 public void PartitionBy_WithEmptyListAndNegativeCount_Throws()
 => Throws <ArgumentOutOfRangeException>(
     () => LIST_EMPTY.PartitionBy(-COUNT_ANY).ToList());