com.github.httpmock.times.ExcatlyOnce 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 ExcatlyOnce extends Times {
@Override
public boolean matches(int num) {
return num == 1;
}
@Override
public String getFailedDescription() {
return "once";
}
public static ExcatlyOnce once() {
return new ExcatlyOnce();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy