示例#1
0
 public static IEnumerable Collection_IsNotNullOrEmpty_Throws_ArgumentEmptyException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <ICollection>(
                new ICollection[] { new List <object>() },
                ExceptionData.ArgumentEmptyExceptionMessage));
 }
示例#2
0
 public static IEnumerable String_IsNotNullOrWhiteSpace_Throws_ArgumentWhiteSpaceException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <string>(
                new string[] { "", " " },
                ExceptionData.ArgumentWhiteSpaceExceptionMessage));
 }
示例#3
0
 public static IEnumerable IsNotNull_Throws_ArgumentNullException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <object>(
                new object[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }
示例#4
0
 public static IEnumerable String_IsNotNullOrEmpty_Throws_ArgumentNullException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <string>(
                new string[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }