Esempio n. 1
0
 public void Between <T>(T low, T high, T actual, Comparison <T> comparison)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparison));
 }
Esempio n. 2
0
 public void Between <T>(T low, T high, T actual, IComparer <T> comparer)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparer));
 }
Esempio n. 3
0
 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);
 }
Esempio n. 4
0
 public void Between <T>(T low, T high, T actual)
 {
     That(actual, Matchers.BeBetween(low, high));
 }
Esempio n. 5
0
 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);
 }
Esempio n. 6
0
 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);
 }
Esempio n. 7
0
 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);
 }
Esempio n. 8
0
 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);
 }
Esempio n. 9
0
 public void Between <T>(string low, string high, string actual, StringComparison comparison)
 {
     That(actual, Matchers.BeBetween(low, high, comparison));
 }