JUnit5 Christmas Decorations Usage Gradle repositories { mavenCentral() maven { url 'https://jitpack.io' } } dependencies { testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' testImplementation 'com.github.bmuskalla:junit5-christmas-decoration:main-SNAPSHOT' } Enable globally -Djunit.jupiter.displayname.generator.default=io.bmuskalla.junit5.christmas.decoration.JUnitChristmasDecorations Enable per test @DisplayNameGeneration(JUnitChristmasDecorations.class) public class FooTest { }