com.tngtech.junit.dataprovider.placeholder.CanonicalClassNamePlaceholder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-dataprovider-core Show documentation
Show all versions of junit-dataprovider-core Show documentation
The common core for a TestNG like dataprovider runner for JUnit.
package com.tngtech.junit.dataprovider.placeholder;
public class CanonicalClassNamePlaceholder extends BasePlaceholder {
public CanonicalClassNamePlaceholder() {
super("%cc");
}
@Override
protected String getReplacementFor(String placeholder, ReplacementData data) {
return data.getTestMethod().getDeclaringClass().getCanonicalName();
}
}