We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version:
v 1.1.1
Contents of file test-cases.csv:
"CASE" "CASE MULTIPLE WORDS" "CASE MULTIPLE WORDS, WITH A COMMA"
Test method:
@FileParameters(("classpath:test-cases.csv")) @Test public void testCase(final String singleColumnValue) { assertTrue(null != singleColumnValue); }
Expected:
All cases pass because it is legal and valid to include commas in CSV text if the column is quoted
Actual:
Cases where column contains comma fails with exception:
java.lang.IllegalArgumentException: Number of parameters inside @Parameters annotation doesn't match the number of test method parameters.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:
v 1.1.1
Contents of file test-cases.csv:
Test method:
Expected:
All cases pass because it is legal and valid to include commas in CSV text if the column is quoted
Actual:
Cases where column contains comma fails with exception:
java.lang.IllegalArgumentException: Number of parameters inside @Parameters annotation doesn't match the number of test method parameters.
The text was updated successfully, but these errors were encountered: