blob: 3557ff0885ab886be3878c41a329a20a1519c87b [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.hamcrest.Description;
import org.mockito.ArgumentMatcher;
public class StartsWith extends ArgumentMatcher<String> implements Serializable {
private static final long serialVersionUID = -5978092285707998431L;
private final String prefix;
public StartsWith(String prefix) {
this.prefix = prefix;
}
public boolean matches(Object actual) {
return actual != null && ((String) actual).startsWith(prefix);
}
public void describeTo(Description description) {
description.appendText("startsWith(\"" + prefix + "\")");
}
}