Is your feature request related to a problem? Please describe.
The @DatasetSource annotation in dokimos-junit5 supports inline JSON via the json() attribute, but currently there is not equivalent for CSV, which means that for simple tabular CSV-like test data, users must use JSON or create separate test files.
Describe the solution you'd like
Add a csv() attribute to @DatasetSource.
Additional context
CSV parsing already exists via Dataset.fromCsv(), so this would just expose it through the JUnit annotation.