All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.httpmock.api.times.Never Maven / Gradle / Ivy

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