In this post I explore some of the features I’m looking forward to in the upcoming JUnit 5 release.
First, a bit of background…
The process to create a new version of JUnit kicked off around the middle of 2015 when a crowdfunding campaign was started. At this point the initiative was referred to as JUnit Lambda. One of the drivers for this was the release of Java 8 that provided a number of language features, such as Streams and Lambdas, offering new ways for the test framework to be implemented and tests to be written. The project was later renamed JUnit 5 and the roadmap for the project leading up to the present day can be found on their GitHub page.
JUnit 5 is not yet complete however the GA release is currently on schedule to be available during Q3 2017. The latest milestone, 5.0.0 M4, was released on 1st April 2017.
Anyway, here are my thoughts on some of the new features that will be available later this year…
How often do you write a test case for which the name is quite long due to you wanting to clearly describe the intentions of the test. Depending on your coding style, you may use camel case that can resultInReallyLongAndDifficultToReadTestNames
.
The new @DisplayName
annotation provides a solution to this. While functionally this change isn’t really offering anything too exciting, I think the clarity it adds to your tests, particularly when viewing them in the test results panel of your IDE, is really valuable.
The improvement of the new style test names over the old is evident when viewing test results in the IDE.
The @Nested
annotation provides us with a new way of organising tests. When applying the annotation to a non-static inner class we are now able to create one or more logical groups of test cases within a single outer test class. The nesting can be applied to an arbitrary depth providing great flexibility.
This works great with IDE integration too to further improve test organisation and the readability of the results…
The @Tag
annotation provides us with a nice way of categorising tests. An obvious use-case would be to categorise tests based on the style of test e.g. integration, system, end-to-end, etc.
Then, for example, the different types of tests could be run as required at the relevant stages of a delivery pipeline.
The ability to now group assertions looks a really useful new feature. In JUnit 4, if a test had multiple assertions then execution would halt after the first failure.
Whereas in JUnit 5, every assertion will be performed and the results provided for each of them.
When viewing the test failure for a grouped assertion in the IDE (IntelliJ) we see that the test failed and closer inspection of the output / stack trace shows the detail related to which assertions failed.
It would be nice to see the IDE integration enhanced further to present the individual assertion failures more clearly in a similar way to the overall test case failures. I had to scroll a bit to find the summary of the assertions that failed.
Now parameterised tests aren’t a new thing - we could write them in JUnit 4 with the help of the Parameterized.class
test runner. Providing the parameters was ugly though…
This feature has been revisited and a completely new way of writing parameterised tests has been provided. With the use of the @ParameterizedTest
and @ValueSource
annotations we have a simple but very powerful way of providing parameters to a test method.
Values can be provided in-line similarly to the example above but with much simplified syntax.
As can be seen in the following screen shot, three tests are executed of which one fails.
As well as @ValueSource
, other options for providing test inputs as parameters are:
@EnumSource
- a set of Enum constants.@MethodSource
- the result of a method in the form of a Stream
, Iterable
, Iterator
or an array of arguments.@CsvSource
- a list of comma separated values.@CsvFileSource
- a CSV file from the classpath.The @CsvFileSource
stands out as a really convenient way of driving large volumes of test data through a test case.
This post only scratches the surface of what’s coming in JUnit 5.
One key area I’ve not covered at all that looks intriguing is the ability to write dynamic tests. I’m looking forward to seeing how this is used in practice.
The new extension model also looks like it will provide a simple and flexible new way for JUnit to be extended, improving on the previous options of Runner
, @Rule
and @ClassRule
.
I’m looking forward to the making use of all of the great new features when JUnit 5 is released.
All code from this post is available on GitHub.