junitparams.naming.TestCaseNamingStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JUnitParams Show documentation
Show all versions of JUnitParams Show documentation
Better parameterised tests for JUnit
package junitparams.naming;
/**
* A strategy that can resolve a test case method name by it's parameters.
*/
public interface TestCaseNamingStrategy {
String getTestCaseName(int parametersIndex, Object parameters);
}