Ejemplo n.º 1
0
 public static IEnumerable IsNotNull_Throws_ArgumentNullException_TestCases_3()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameterAndMessage <object>(
                new object[] { null },
                ExceptionData.ArgumentNullExceptionMessage,
                ExceptionData.ArgumentNullExceptionDefaultMessage));
 }
Ejemplo n.º 2
0
 public static IEnumerable Collection_IsNotNullOrEmpty_Throws_ArgumentNullException_TestCases_3()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameterAndMessage <ICollection>(
                new ICollection[] { null },
                ExceptionData.ArgumentNullExceptionMessage,
                ExceptionData.ArgumentNullExceptionDefaultMessage));
 }
Ejemplo n.º 3
0
 public static IEnumerable String_IsNotNullOrWhiteSpace_Throws_ArgumentWhiteSpaceException_TestCases_3()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameterAndMessage <string>(
                new string[] { "", " " },
                ExceptionData.ArgumentWhiteSpaceExceptionMessage,
                ExceptionData.ArgumentWhiteSpaceExceptionDefaultMessage));
 }
Ejemplo n.º 4
0
 public static IEnumerable Collection_IsNotNullOrEmpty_Throws_ArgumentEmptyException_TestCases_2()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameter <ICollection>(
                new ICollection[] { new List <object>() },
                ExceptionData.ArgumentEmptyExceptionMessage));
 }
Ejemplo n.º 5
0
 public static IEnumerable Collection_IsNotNullOrEmpty_Throws_ArgumentNullException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <ICollection>(
                new ICollection[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }
Ejemplo n.º 6
0
 public static IEnumerable IsNotNull_Throws_ArgumentNullException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <object>(
                new object[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }
Ejemplo n.º 7
0
 public static IEnumerable String_IsNotNullOrWhiteSpace_Throws_ArgumentNullException_TestCases_2()
 {
     return(TestCaseDataUtil.CreateTestCaseDataExceptionWithParameter <string>(
                new string[] { null },
                ExceptionData.ArgumentNullExceptionMessage));
 }
Ejemplo n.º 8
0
 public static IEnumerable String_IsNotNullOrEmpty_Throws_ArgumentEmptyException_TestCases_1()
 {
     return(TestCaseDataUtil.CreateTestCaseDataException <string>(
                new string[] { "" },
                ExceptionData.ArgumentEmptyExceptionMessage));
 }