com.github.httpmock.api.times.AtLeastOnce Maven / Gradle / Ivy
package com.github.httpmock.api.times;
public class AtLeastOnce extends Times {
@Override
public boolean matches(int num) {
return num >= 1;
}
@Override
public String getFailedDescription() {
return "at least once";
}
public static ExcatlyOnce atLeastOnce() {
return new ExcatlyOnce();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy