com.github.httpmock.api.times.ExactlyOnce 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 ExactlyOnce extends Exactly {
public ExactlyOnce() {
super(1);
}
@Override
public String getFailedDescription() {
return "once";
}
public static ExactlyOnce once() {
return new ExactlyOnce();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy