com.github.httpmock.api.times.AtLeastOnce 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
The newest version!
package com.github.httpmock.api.times;
public class AtLeastOnce extends AtLeast {
public AtLeastOnce() {
super(1);
}
@Override
public String getFailedDescription() {
return "at least once";
}
public static AtLeastOnce atLeastOnce() {
return new AtLeastOnce();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy