You should tell the test's DisplayName, the name of the test method, and which methods are called in the test. For example, for the test::
    @Test
    @DisplayName("sendTransformationRequest() when transformation is disabled")
    void testSendTransformationTransformationDisabled() throws IOException {
        var fileToDecode = TestUtils.createFile(tempDir, false);
        var disabled = "decoding_disabled_project";

        var eppEvent = TestUtils.getEPPEvent(fileToDecode.toString(), disabled, "123456");
        requestHandler.sendTransformationRequest(new ArchiveEventData(eppEvent, TestLocations.projectDir));

        verify(archiverKafkaProducerServiceMock, times(0)).sendTransformationRequest(any());
    }

    The description should look like this:
    Summary: sendTransformationRequest() when transformation is disabled
    Test name: testSendTransformationTransformationDisabled()
    Methods called: TestUtils.createFile, TestUtils.getEPPEvent, requestHandler.sendTransformationRequest
    """
