Context: https://docs.openrewrite.org/recipes/java/testing/junit5/csvsourcetovaluesource
- @CsvSource(
- """
- # Lower-case letters
- asdf
- a
- # Numbers
- 1
- 1 23
- """
- )
+ @ValueSource(strings = """
+ # Lower-case letters
+ asdf
+ a
+ # Numbers
+ 1
+ 1 23
+ """)
I think, the values should be split?
Context: https://docs.openrewrite.org/recipes/java/testing/junit5/csvsourcetovaluesource
I think, the values should be split?