All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tngtech.junit.dataprovider.placeholder.CompleteMethodSignaturePlaceholder Maven / Gradle / Ivy

There is a newer version: 2.10
Show newest version
package com.tngtech.junit.dataprovider.placeholder;

public class CompleteMethodSignaturePlaceholder extends BasePlaceholder {
    public CompleteMethodSignaturePlaceholder() {
        super("%cm");
    }

    @Override
    protected String getReplacementFor(String placeholder, ReplacementData data) {
        return data.getTestMethod().toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy