
com.trigonic.utils.test.junit.FirstParameterLabel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-utils Show documentation
Show all versions of test-utils Show documentation
Provides utilities for testing
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