コード例 #1
0
ファイル: OverlapMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void DoesNotOverlap <TSource>(IEnumerable <TSource> expected, IEnumerable <TSource> actual, IEqualityComparer <TSource> comparer, string message, params object[] args)
 {
     NotThat(actual, Matchers.Overlap(expected, comparer), message, (object[])args);
 }
コード例 #2
0
ファイル: OverlapMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Overlaps <TSource>(IEnumerable <TSource> expected, IEnumerable <TSource> actual, Comparison <TSource> comparison, string message, params object[] args)
 {
     That(actual, Matchers.Overlap(expected, comparison), message, (object[])args);
 }