Пример #1
0
 public void Between <T>(T low, T high, T actual, Comparison <T> comparison)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparison));
 }
Пример #2
0
 public void Between <T>(T low, T high, T actual, IComparer <T> comparer)
 {
     That(actual, Matchers.BeBetween <T>(low, high, comparer));
 }
Пример #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);
 }
Пример #4
0
 public void Between <T>(T low, T high, T actual)
 {
     That(actual, Matchers.BeBetween(low, high));
 }
Пример #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);
 }
Пример #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);
 }
Пример #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);
 }
Пример #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);
 }
Пример #9
0
 public void Between <T>(string low, string high, string actual, StringComparison comparison)
 {
     That(actual, Matchers.BeBetween(low, high, comparison));
 }