Skip to content
Advertisement

Parameterize both class and tests in JUnit 5

Is there a way to parameterize both test class (like you could do with Parameterized and @Parameters in JUnit 4) and test methods (like you could do with JUnitParams in JUnit 4 or with @ParameterizedTest in JUnit 5)? I need to get the Cartesian product of the parameters in the end.

Example of a partial test for java.nio.ByteBuffer using the desired approach:

JavaScript

It produces:

JavaScript

We’re thinking about migrating to JUnit 5 from TestNG, but we use this kind of thing pretty often. The use of the byte order as a class-level parameter in the example above is not a coincidence: we often need tests for various binary data processor, where the test constructor would take a byte/bit order argument, and we run every test for both Big Endian and Little Endian.

I was thinking about creating an extension for this and then use ExtendWith, but maybe there is an existing extension or something that works out-of-the-box that I have missed?

Advertisement

Answer

JUnit Jupiter (Vanilla)

You can combine multiple sources within e.g. a @MethodSource. Based on your TestNG example:

JavaScript

This produces:

JavaScript

As requested by the OP, here is “an example with at least two test methods with different set of parameters”:

JavaScript

3 class parameters plus 3 different method parameters with different types and sizes, producing the following output:

JavaScript

JUnit Pioneer

There is the JUnit Pioneer extension pack for JUnit Jupiter. It comes with @CartesianTest. Using the extended the example from above:

JavaScript

This produces the same output.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement