mockit.internal.expectations.RecordPhase 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 mockit.internal.expectations.invocation.*;
import static mockit.internal.expectations.state.ExecutingTest.*;
public final class RecordPhase extends TestOnlyPhase
{
RecordPhase(@Nonnull RecordAndReplayExecution recordAndReplay) { super(recordAndReplay); }
void addResult(@Nullable Object result) {
if (currentExpectation != null) {
currentExpectation.addResult(result);
}
}
public void addSequenceOfReturnValues(@Nonnull Object[] values) {
if (currentExpectation != null) {
currentExpectation.addSequenceOfReturnValues(values);
}
}
@Nullable @Override
Object handleInvocation(
@Nullable Object mock, int mockAccess, @Nonnull String mockClassDesc, @Nonnull String mockNameAndDesc,
@Nullable String genericSignature, boolean withRealImpl, @Nonnull Object[] args
) {
mock = configureMatchingOnMockInstanceIfSpecified(mock);
ExpectedInvocation invocation = new ExpectedInvocation(
mock, mockAccess, mockClassDesc, mockNameAndDesc, matchInstance, genericSignature, args);
boolean nonStrictInvocation = false;
if (!matchInstance && invocation.isConstructor()) {
Map