com.tngtech.jgiven.examples.datatable.format.ToUpperCaseFormatter Maven / Gradle / Ivy
package com.tngtech.jgiven.examples.datatable.format;
import com.tngtech.jgiven.format.ArgumentFormatter;
public class ToUpperCaseFormatter implements ArgumentFormatter {
@Override
public String format( String value, String... args ) {
if( value == null ) {
return "";
}
return value.toUpperCase();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy