display (near-)method name as a method
diff --git a/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java b/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
index a237dc7..592ad9e 100644
--- a/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
+++ b/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
@@ -449,7 +449,7 @@
         {
             methodName = methodName.substring( 4 );
         }
-        return className + " (" + methodName + ')';
+        return className + '.' + methodName + "()";
     }
 
     private String pad( int chars )