> For the complete documentation index, see [llms.txt](https://bernardo.gitbook.io/development-docs-java/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bernardo.gitbook.io/development-docs-java/testing/junit/display-name.md).

# Display Name

JUnit 5 allows defining a descriptive name for tests and suites.

```java
@DisplayName("Example suite")
public class TestSuite {

    @Test
    @DisplayName("Some test")
    public final void test() {
        // Loads tests data
    }

}
```
