com.github.httpmock.times.Never Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mock-http-server-junit Show documentation
Show all versions of mock-http-server-junit Show documentation
Mock HTTP Server - JUnit Rules
package com.github.httpmock.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