Simple Parameterized Test
Understand how to use parameterized tests with a simple and custom display name.
We'll cover the following...
Simple display names
In JUnit 5, we can use @RepeatedTest
to make a test run multiple times. However, all these repetitions are identical. The @RepeatedTest
simply runs the same test over and over. To run a test multiple times differently, we can use the parameterized tests.
Just as with ...