Skip to content

Instantly share code, notes, and snippets.

@beyondxscratch
Created July 14, 2022 22:16
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/7a7f1100216a09caf0d1cb51f3a46c77 to your computer and use it in GitHub Desktop.
Save beyondxscratch/7a7f1100216a09caf0d1cb51f3a46c77 to your computer and use it in GitHub Desktop.
@ParameterizedTest
@CsvSource({
"Programmez, 10",
"Magazine, 8"
})
void a_test_with_two_parameters(String word, int expectedLength) {
assertEquals(expectedLength, word.length());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment