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

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

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