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

            arr.Add("Testing");

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