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

com.github.karsaig.approvalcrest.matcher.IsEqualMatcher Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 Shazam Entertainment Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
 *
 * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 */
package com.github.karsaig.approvalcrest.matcher;

import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.core.IsEqual;

import static org.hamcrest.Matchers.equalTo;

/**
 * {@link DiagnosingCustomisableMatcher} which applies the {@link IsEqual} matcher when the object to compare is a String
 * or a primitive type.
 */
public class IsEqualMatcher extends DiagnosingCustomisableMatcher {

    public IsEqualMatcher(T expected) {
        super(expected);
    }

    @Override
    public void describeTo(Description description) {
        equalTo(expected).describeTo(description);
    }

    @Override
    protected boolean matches(Object actual, Description mismatchDescription) {
        Matcher equalTo = equalTo(expected);
        boolean matches = equalTo.matches(actual);
        if (!matches) {
            equalTo.describeMismatch(actual, mismatchDescription);
        }
        return matches;
    }

    @Override
    public String toString() {
        return "SameBeanAs equals matcher";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy