コード例 #1
0
 public void IsProperSupersetOf_NullOther_ArgumentNullException()
 => Assert.Catch <ArgumentNullException>(() => _filledIntSet.IsProperSupersetOf(null));
コード例 #2
0
        public bool IsProperSupersetOf_IntValues_CorrectResult(int[] subset, int[] set)
        {
            AddValues(subset);

            return(_intSet.IsProperSupersetOf(set));
        }