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

org.mockito.internal.verification.VerificationDataImpl Maven / Gradle / Ivy

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

import java.util.List;

import org.mockito.exceptions.Reporter;
import org.mockito.internal.invocation.Invocation;
import org.mockito.internal.invocation.InvocationMatcher;
import org.mockito.internal.util.ObjectMethodsGuru;
import org.mockito.internal.verification.api.VerificationData;

public class VerificationDataImpl implements VerificationData {

    private final List allInvocations;
    private final InvocationMatcher wanted;

    public VerificationDataImpl(List allInvocations, InvocationMatcher wanted) {
        this.allInvocations = allInvocations;
        this.wanted = wanted;
        this.assertWantedIsVerifiable();
    }

    public List getAllInvocations() {
        return allInvocations;
    }

    public InvocationMatcher getWanted() {
        return wanted;
    }

    void assertWantedIsVerifiable() {
        if (wanted == null) {
            return;
        }
        ObjectMethodsGuru o = new ObjectMethodsGuru();
        if (o.isToString(wanted.getMethod())) {
            new Reporter().cannotVerifyToString();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy