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