All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.hamcrest.HamcrestArgumentMatcher Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2016 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.hamcrest;

import org.hamcrest.Matcher;
import org.hamcrest.StringDescription;
import org.mockito.ArgumentMatcher;

public class HamcrestArgumentMatcher implements ArgumentMatcher {

    private final Matcher matcher;

    public HamcrestArgumentMatcher(Matcher matcher) {
        this.matcher = matcher;
    }

    public boolean matches(Object argument) {
        return this.matcher.matches(argument);
    }

    public String toString() {
        //TODO SF add unit tests and integ test coverage for describeTo()
        return StringDescription.toString(matcher);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy