In JUnit 5, there is @DisplayName annotation:
@DisplayName is used to declare a custom display name for the
annotated test class or test method. Display names are typically used
for test reporting in IDEs and build tools and may contain spaces,
special characters, and even emoji.
Example:
@Test
@DisplayName("Test if true holds")
public void checkTrue() {
assertEquals(true, true);
}