com.smartbear.readyapi.client.Validator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
The newest version!
package com.smartbear.readyapi.client;
import org.apache.commons.lang3.StringUtils;
import java.util.List;
public class Validator {
public static void validateNotEmpty(String value, String message) {
if (StringUtils.isBlank(value)) {
throw new IllegalStateException(message);
}
}
public static void validateNotEmpty(Integer value, String message) {
if (value == null) {
throw new IllegalStateException(message);
}
}
public static void validateNotEmpty(List extends Object> values, String message) {
if (values.size() == 0) {
throw new IllegalStateException(message);
}
}
}