
com.github.aro_tech.extended_mockito.MatchersMixin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extended-mockito Show documentation
Show all versions of extended-mockito Show documentation
Jar with Mockito as a mixin interface, plus extra features
package com.github.aro_tech.extended_mockito;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.mockito.ArgumentMatcher;
import org.mockito.Matchers;
/**
* Wrapper of static elements in org.mockito.Matchers
* Generated by Interface-It: https://github.com/aro-tech/interface-it
* {@link org.mockito.Matchers}
*/
public interface MatchersMixin {
// CONSTANTS:
// DELEGATE METHODS:
/**
* Delegate call to public static T org.mockito.Matchers.any()
* {@link org.mockito.Matchers#any()}
*/
default T any() {
return Matchers.any();
}
/**
* Delegate call to public static T org.mockito.Matchers.any(java.lang.Class)
* {@link org.mockito.Matchers#any(java.lang.Class)}
*/
default T any(Class clazz) {
return Matchers.any(clazz);
}
/**
* Delegate call to public static boolean org.mockito.Matchers.anyBoolean()
* {@link org.mockito.Matchers#anyBoolean()}
*/
default boolean anyBoolean() {
return Matchers.anyBoolean();
}
/**
* Delegate call to public static byte org.mockito.Matchers.anyByte()
* {@link org.mockito.Matchers#anyByte()}
*/
default byte anyByte() {
return Matchers.anyByte();
}
/**
* Delegate call to public static char org.mockito.Matchers.anyChar()
* {@link org.mockito.Matchers#anyChar()}
*/
default char anyChar() {
return Matchers.anyChar();
}
/**
* Delegate call to public static java.util.Collection org.mockito.Matchers.anyCollection()
* {@link org.mockito.Matchers#anyCollection()}
*/
default Collection
© 2015 - 2025 Weber Informatics LLC | Privacy Policy