Пример #1
0
 public static void IsEmpty <T>(this IAssertionTool assertTool, Expression <Func <IEnumerable <T> > > collection, string msg)
 {
     assertTool.IsEmpty(collection, "{0}", msg);
 }
Пример #2
0
 public static void IsEmpty <T>(this IAssertionTool assertTool, Expression <Func <IEnumerable <T> > > collection)
 {
     assertTool.IsEmpty(collection, null, null);
 }
Пример #3
0
 public static void IsEmpty <T>(this IAssertionTool assertTool, IEnumerable <T> collection, string msg)
 {
     assertTool.IsEmpty(() => collection, "{0}", msg);
 }
Пример #4
0
 public static void IsEmpty <T>(this IAssertionTool assertTool, IEnumerable <T> collection, string msg, params object[] fmt)
 {
     assertTool.IsEmpty(() => collection, msg, fmt);
 }
Пример #5
0
 public static void IsEmpty <T>(this IAssertionTool assertTool, IEnumerable <T> collection)
 {
     assertTool.IsEmpty(() => collection, null, null);
 }