public static void IsEmpty <T>(this IAssertionTool assertTool, Expression <Func <IEnumerable <T> > > collection, string msg) { assertTool.IsEmpty(collection, "{0}", msg); }
public static void IsEmpty <T>(this IAssertionTool assertTool, Expression <Func <IEnumerable <T> > > collection) { assertTool.IsEmpty(collection, null, null); }
public static void IsEmpty <T>(this IAssertionTool assertTool, IEnumerable <T> collection, string msg) { assertTool.IsEmpty(() => collection, "{0}", msg); }
public static void IsEmpty <T>(this IAssertionTool assertTool, IEnumerable <T> collection, string msg, params object[] fmt) { assertTool.IsEmpty(() => collection, msg, fmt); }
public static void IsEmpty <T>(this IAssertionTool assertTool, IEnumerable <T> collection) { assertTool.IsEmpty(() => collection, null, null); }