How are Dynamic Tests different from Parameterized Tests in JUnit 5?

Viewed 1849

Almost all the examples of dynamic tests that I have seen, can be reworked and written using parameterized tests. So, which is a practical scenario where the Dynamic tests are the only option, or at least, better suitable than the parameterized tests.

The only "truly" dynamic test example in JUnit 5 docs is not practical.

Any ideas?

1 Answers
Related