In the book, so far, we have learned about different features of JUnit 5 by building tests for our bookstoread application. All tests that we have added thus far have been static in nature. JUnit 5 offers us a new paradigm of runtime test creation. In this chapter, we will look at dynamic test generation.
We have addressed all the features of JUnit 5. We can now say that JUnit 5 is going to be the de facto standard for unit testing in the future. Various tools and platform are in ...