コード例 #1
0
 public void PartitionBy_WithEmptyEnumerableAndEmptyCount_Throws()
 => Throws <ArgumentOutOfRangeException>(
     () => ENMRBL_EMPTY.PartitionBy(0).ToList());
コード例 #2
0
 public void PartitionBy_WithEmptyEnumerableAndNegativeCount_Throws()
 => Throws <ArgumentOutOfRangeException>(
     () => ENMRBL_EMPTY.PartitionBy(-COUNT_ANY).ToList());