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

com.trigonic.utils.test.junit.FirstParameterLabel Maven / Gradle / Ivy

The newest version!
package com.trigonic.utils.test.junit;

public class FirstParameterLabel extends DefaultLabelMaker {
    public FirstParameterLabel() {
        super(":");
    }

    public FirstParameterLabel(String delimiter) {
        super(delimiter);
    }
    
    @Override
    public String getLabel(int index, Object[] parameters) {
        return parameters[0] == null ? "null" : parameters[0].toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy