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

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

There is a newer version: 1.1.9
Show newest version
package com.github.httpmock.api.times;

public class ExcatlyOnce extends Times {

	@Override
	public boolean matches(int num) {
		return num == 1;
	}

	@Override
	public String getFailedDescription() {
		return "once";
	}

	public static ExcatlyOnce once() {
		return new ExcatlyOnce();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy