Issue #2217 adding parameter naming to help identify test run

This commit is contained in:
Joakim Erdfelt 2018-02-26 14:01:26 -06:00
parent a19995b755
commit be64f322ad
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public abstract class AbstractHttpClientServerTest
{
@Parameterized.Parameters
@Parameterized.Parameters(name = "ssl={0}")
public static Collection<SslContextFactory[]> parameters()
{
return Arrays.asList(new SslContextFactory[]{null}, new SslContextFactory[]{new SslContextFactory()});