Skip to content

Instantly share code, notes, and snippets.

@beyondxscratch
Created July 14, 2022 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beyondxscratch/da45394eaf80e8a3c6ad84359e70a8ef to your computer and use it in GitHub Desktop.
Save beyondxscratch/da45394eaf80e8a3c6ad84359e70a8ef to your computer and use it in GitHub Desktop.
@ParameterizedTest
@CsvSource({
"2021-01-01, JANUARY",
"2020-04-15, APRIL"
})
void a_test_with_converters(LocalDate date, Month expectedMonth) {
assertEquals(expectedMonth, date.getMonth());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment