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

net.thucydides.core.steps.StepArgumentWriter Maven / Gradle / Ivy

The newest version!
package net.thucydides.core.steps;

import org.apache.commons.lang3.ArrayUtils;

public class StepArgumentWriter {

    public static String readableFormOf(Object arg) {
        if (arg == null) {
            return "";
        } else if (arg.getClass().isArray()) {
            return ArrayUtils.toString(arg);
        } else {
            return arg.toString();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy