blob: f9f0069bd989c4fb55cd940c043f3abe21052860 [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.matchers;
import java.io.Serializable;
import org.mockito.ArgumentMatcher;
public class Any implements ArgumentMatcher<Object>, VarargMatcher ,Serializable {
public static final Any ANY = new Any();
private Any() {
}
public boolean matches(Object actual) {
return true;
}
public String toString() {
return "<any>";
}
}