mockit.internal.expectations.ExecutionMode 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-2015 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations;
import javax.annotation.*;
import static java.lang.reflect.Modifier.*;
import mockit.internal.state.*;
public enum ExecutionMode
{
Regular
{
@Override
boolean isNativeMethodToBeIgnored(int access) { return false; }
@Override
boolean isToExecuteRealImplementation(@Nullable Object instance)
{
return instance != null && !TestRun.mockFixture().isInstanceOfMockedClass(instance);
}
},
Partial
{
@Override
boolean isWithRealImplementation(@Nullable Object instance)
{
return instance == null || !TestRun.getExecutingTest().isInjectableMock(instance);
}
@Override
boolean isToExecuteRealObjectOverride(@Nonnull Object instance) { return true; }
},
PerInstance
{
@Override
boolean isStaticMethodToBeIgnored(int access) { return isStatic(access); }
@Override
boolean isToExecuteRealImplementation(@Nullable Object instance)
{
return instance == null || !TestRun.getExecutingTest().isMockedInstance(instance);
}
@Override
boolean isToExecuteRealObjectOverride(@Nonnull Object instance)
{
return !TestRun.getExecutingTest().isMockedInstance(instance);
}
};
public final boolean isMethodToBeIgnored(int access)
{
return isStaticMethodToBeIgnored(access) || isNativeMethodToBeIgnored(access);
}
boolean isStaticMethodToBeIgnored(int access) { return false; }
boolean isNativeMethodToBeIgnored(int access) { return isNative(access); }
boolean isToExecuteRealImplementation(@Nullable Object instance) { return false; }
boolean isWithRealImplementation(@Nullable Object instance) { return false; }
boolean isToExecuteRealObjectOverride(@Nonnull Object instance) { return false; }
}