blob: f7dd5601aa359a0329db57ec6416bced119b509d [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 Matches extends ArgumentMatcher<Object> implements Serializable {
private static final long serialVersionUID = 8787704593379472029L;
private final String regex;
public Matches(String regex) {
this.regex = regex;
}
public boolean matches(Object actual) {
return (actual instanceof String) && ((String) actual).matches(regex);
}
public void describeTo(Description description) {
description.appendText("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
+ "\")");
}
}