...

/

@RepeatedTest with Display Name

@RepeatedTest with Display Name

This lesson demonstrates how to use @RepeatedTest annotation with a custom display name.

We'll cover the following...

@Repeated Tests with @DisplayName

In our previous lesson, we saw how to use @RepeatedTest annotation to run tests multiple times. @RepeatedTest takes in a value of type integer. This integer value is the count of the number of times the test case will be executed. The output of Junit Test case in ...