blob: f89c2c035e966b9378668e798e122ed99373b45f [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 org.mockito.ArgumentMatcher;
import java.io.Serializable;
public class StartsWith implements ArgumentMatcher<String>, Serializable {
private final String prefix;
public StartsWith(String prefix) {
this.prefix = prefix;
}
public boolean matches(String actual) {
return actual != null && actual.startsWith(prefix);
}
public String toString() {
return "startsWith(\"" + prefix + "\")";
}
}