コード例 #1
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Between <T>(T low, T high, T actual, Comparison <T> comparison)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparison));
 }
コード例 #2
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Between <T>(T low, T high, T actual, IComparer <T> comparer)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparer));
 }
コード例 #3
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public static void Between <T>(this IExpectation <T> e, T low, T high, IComparer <T> comparer, string message, params object[] args)
 {
     e.Like(Matchers.BeBetween(low, high, comparer), message, (object[])args);
 }
コード例 #4
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Between <T>(T low, T high, T actual)
 {
     That(actual, Matchers.BeBetween(low, high));
 }
コード例 #5
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public static void Between(this IExpectation <string> e, string low, string high, StringComparison comparison, string message, params object[] args)
 {
     e.Like(Matchers.BeBetween(low, high, comparison), message, (object[])args);
 }
コード例 #6
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void NotBetween <T>(T low, T high, T actual, Comparison <T> comparison, string message, params object[] args)
 {
     NotThat(actual, Matchers.BeBetween(low, high, comparison), message, (object[])args);
 }
コード例 #7
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Between(string low, string high, string actual, StringComparison comparison, string message, params object[] args)
 {
     That(actual, Matchers.BeBetween(low, high, comparison), message, args);
 }
コード例 #8
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Between <T>(T low, T high, T actual, IComparer <T> comparer, string message, params object[] args)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparer), message, args);
 }
コード例 #9
0
ファイル: BetweenMatcher.cs プロジェクト: Carbonfrost/f-spec
 public void Between <T>(string low, string high, string actual, StringComparison comparison)
 {
     That(actual, Matchers.BeBetween(low, high, comparison));
 }