Skip to content

Instantly share code, notes, and snippets.

@weikangchia
Created November 20, 2021 04:57
Show Gist options
  • Save weikangchia/ed43dcc902a9516169f1069cae6e4e82 to your computer and use it in GitHub Desktop.
Save weikangchia/ed43dcc902a9516169f1069cae6e4e82 to your computer and use it in GitHub Desktop.
@ParameterizedTest
@CsvSource(value = {"M,21", "M, 31"})
void Given_MaleGenderWithAgeGreaterThan20_When_Test_Then_ShouldReturnTrue(Gender genderEnumToTest, int ageToTest) {
assertEquals(Gender.M, genderEnumToTest);
assertThat(ageToTest).isGreaterThan(20);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment