Skip to content

Instantly share code, notes, and snippets.

@dnno
Created June 2, 2019 18:59
Show Gist options
  • Select an option

  • Save dnno/ebdf7e23d755a27895bc73527625abfc to your computer and use it in GitHub Desktop.

Select an option

Save dnno/ebdf7e23d755a27895bc73527625abfc to your computer and use it in GitHub Desktop.
@RunWith(JUnitParamsRunner.class)
public class PersonTest {
@Test
@Parameters({"0, 0", "1, 1", "2, 1", "3, 2" })
public void personIsAdult(int input, int expected) {
assertEquals(expected, Fibonacci.compute(input));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment