Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
@RunWith(JUnitParamsRunner.class)

3) Use both `@Parameters` and `@TestCaseName` on test method(s) using parameters:

Code Block
@Test
@Parameters({"true", "false"})
@TestCaseName("{method}({params})")
public void testSomeBehavior(final boolean value) throws Exception {