use of edu.cornell.kfs.vnd.batch.VendorBatchCsvInputFileType in project cu-kfs by CU-CommunityApps.
the class CuBatchInputFileServiceImplTest method testIllegalArguments.
/*
* test several potential IllegalArgumentException
*/
public void testIllegalArguments() {
runTestIllegalArgument();
user = new PersonImpl();
runTestIllegalArgument();
batchInputFileType = new VendorBatchCsvInputFileType();
runTestIllegalArgument();
fileContents = new InputStream() {
@Override
public int read() throws IOException {
return 0;
}
};
// Only allow alphanumeric
fileUserIdentifier = " 123.abc";
runTestIllegalArgument();
}
Aggregations