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

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

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