For JUnit parameterized tests, you can add a descriptive name based on the parameter like this:
@Parameters(name="{index}: {0} {1}")
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
{ "x", "y" },
{ "foo", "bar" },
{ "hello", "world" }
});
}
This will output test results like:
[0: x y]
[1: foo bar]
[2: hello world]
See also: