public void IsNotEmpty() { List <string> arr = new List <string>(); arr.Add("Testing"); GenericAssert.IsNotEmpty(arr); }
public void IsNotEmptyFail() { GenericAssert.IsNotEmpty(new List <string>(), "List"); }