Beispiel #1
0
 public static IEnumerable Collection_IsNotNullOrEmpty_Throws_ArgumentEmptyException_TestCases_2()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameter <ICollection>(
                new ICollection[] { new List <object>() },
                ExceptionData.ArgumentEmptyExceptionMessage));
 }
Beispiel #2
0
 public static IEnumerable String_IsNotNullOrWhiteSpace_Throws_ArgumentWhiteSpaceException_TestCases_2()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameter <string>(
                new string[] { "", " " },
                ExceptionData.ArgumentWhiteSpaceExceptionMessage));
 }
Beispiel #3
0
 public static IEnumerable IsNotNull_Throws_ArgumentNullException_TestCases_2()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameter <object>(
                new object[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }
Beispiel #4
0
 public static IEnumerable String_IsNotNullOrEmpty_Throws_ArgumentNullException_TestCases_2()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameter <string>(
                new string[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }