Ejemplo n.º 1
0
 public static void IsLower(this ActualValue <string> actual, string message)
 {
     if (actual == null)
     {
         throw new ArgumentNullException(nameof(actual));
     }
     actual.IsLower(message, null);
 }
Ejemplo n.º 2
0
 public static void IsLower(this ActualValue <string> actual)
 {
     actual.IsLower(null, null);
 }
Ejemplo n.º 3
0
 public static void IsLower(this ActualValue <string> actual, string message)
 {
     actual.IsLower(message, null);
 }