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