Skip to content

Instantly share code, notes, and snippets.

@wkorando
Last active August 17, 2018 22:54
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 wkorando/12b6f5650ea82e449d2cf5bb02a52b72 to your computer and use it in GitHub Desktop.
Save wkorando/12b6f5650ea82e449d2cf5bb02a52b72 to your computer and use it in GitHub Desktop.
@TestFactory
public List<DynamicTest> exampleTestFactory() {
return Arrays.asList(
dynamicTest("Dynamic square " + 2, () -> assertEquals(4, 2 * 2)),//
dynamicTest("Dynamic true " + true, () -> assertTrue(true)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment