com.github.httpmock.api.times.Never Maven / Gradle / Ivy
package com.github.httpmock.api.times;
public class Never extends Times {
@Override
public boolean matches(int num) {
return num == 0;
}
@Override
public String getFailedDescription() {
return "never";
}
public static Never never() {
return new Never();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy