Repeated Tests
Learn how to use the @RepeatedTest annotation in JUnit 5.
We'll cover the following...
Using repeated tests
We may occasionally want to run a test method multiple times. JUnit 5 has the org.junit.jupiter.api.RepeatedTest
annotation to easily support this requirement. We simply need to use @RepeatedTest
instead of ...