com.tngtech.junit.dataprovider.format.DataProviderPlaceholderFormatter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-jupiter-dataprovider Show documentation
Show all versions of junit-jupiter-dataprovider Show documentation
A TestNG like dataprovider runner for JUnit Jupiter which is feature comparable to JUnit4 dataprovider.
package com.tngtech.junit.dataprovider.format;
import java.lang.reflect.Method;
import java.util.List;
import com.tngtech.junit.dataprovider.placeholder.BasePlaceholder;
import com.tngtech.junit.dataprovider.placeholder.ReplacementData;
public class DataProviderPlaceholderFormatter implements DataProviderTestNameFormatter {
private final String format;
private final List extends BasePlaceholder> placeholders;
public DataProviderPlaceholderFormatter(String format, List extends BasePlaceholder> placeholders) {
this.format = format;
this.placeholders = placeholders;
}
@Override
public String format(Method testMethod, int invocationIndex, List