mockit.internal.expectations.PartiallyMockedInstances Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006 JMockit developers
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations;
import java.util.*;
import javax.annotation.*;
import static mockit.internal.util.Utilities.containsReference;
final class PartiallyMockedInstances
{
@Nonnull private final List> dynamicMockInstancesToMatch;
PartiallyMockedInstances(@Nonnull List> dynamicMockInstancesToMatch) {
this.dynamicMockInstancesToMatch = dynamicMockInstancesToMatch;
}
boolean isToBeMatchedOnInstance(@Nonnull Object mock) {
return containsReference(dynamicMockInstancesToMatch, mock);
}
boolean isDynamicMockInstanceOrClass(@Nonnull Object invokedInstance, @Nonnull Object invocationInstance) {
if (containsReference(dynamicMockInstancesToMatch, invokedInstance)) {
return true;
}
Class> invokedClass = invocationInstance.getClass();
for (Object dynamicMock : dynamicMockInstancesToMatch) {
if (dynamicMock.getClass() == invokedClass) {
return true;
}
}
return false;
}
}