org.easymock.internal.AlwaysMatcher Maven / Gradle / Ivy
Go to download
EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly
/*
* Copyright (c) 2001-2005 OFFIS, Tammo Freese.
* This program is made available under the terms of the MIT License.
*/
package org.easymock.internal;
import org.easymock.AbstractMatcher;
public class AlwaysMatcher extends AbstractMatcher {
public boolean matches(Object[] expected, Object[] actual) {
return true;
}
protected String argumentToString(Object argument) {
return "";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy