コード例 #1
0
 public void HasCount_WithEmptyEnumerableAndEmptyCount_ExpectsTrue()
 => True(ENMRBL_EMPTY.HasCount(0));
コード例 #2
0
 public void HasCount_WithEmptyEnumerableAndPositiveCount_ExpectsFalse()
 => False(ENMRBL_EMPTY.HasCount(COUNT_ANY));
コード例 #3
0
 public void HasCount_WithEmptyEnumerableAndNegativeCount_Throws()
 => Throws <ArgumentOutOfRangeException>(
     () => ENMRBL_EMPTY.HasCount(-COUNT_ANY));