Package org.junit.platform.suite.api
Annotation Type SuiteDisplayName
-
@Retention(RUNTIME) @Target(TYPE) @Documented @API(status=MAINTAINED, since="1.1") public @interface SuiteDisplayName
@SuiteDisplayName
is used to declare a custom display name for the annotated test class that is executed as a test suite on the JUnit Platform.Display names are typically used for test reporting in IDEs and build tools and may contain spaces, special characters, and even emoji.
JUnit 4 Suite Support
Test suites can be run on the JUnit Platform in a JUnit 4 environment via
@RunWith(JUnitPlatform.class)
.
-
-
Element Detail
-
value
String value
Custom display name for the annotated class.- Returns:
- a custom display name; never blank or consisting solely of whitespace
-
-