Beispiel #1
0
        public void IsNotEmpty()
        {
            List <string> arr = new List <string>();

            arr.Add("Testing");

            GenericAssert.IsNotEmpty(arr);
        }
Beispiel #2
0
 public void IsNotEmptyFail()
 {
     GenericAssert.IsNotEmpty(new List <string>(), "List");
 }