mockit.internal.expectations.mocking.InstanceFactory 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 APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external
APIs; JUnit (4 & 5) and TestNG test runners are supported.
It also contains an advanced code coverage tool.
/*
* Copyright (c) 2006 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations.mocking;
import javax.annotation.*;
import mockit.internal.reflection.*;
/**
* Factory for the creation of new mocked instances, and for obtaining/clearing the last instance created.
* There are separate subclasses dedicated to mocked interfaces and mocked classes.
*/
public abstract class InstanceFactory
{
@Nonnull final Class> concreteClass;
@Nullable Object lastInstance;
InstanceFactory(@Nonnull Class> concreteClass) { this.concreteClass = concreteClass; }
@Nonnull public abstract Object create();
@Nullable public final Object getLastInstance() { return lastInstance; }
public abstract void clearLastInstance();
static final class InterfaceInstanceFactory extends InstanceFactory
{
@Nullable private Object emptyProxy;
InterfaceInstanceFactory(@Nonnull Object emptyProxy)
{
super(emptyProxy.getClass());
this.emptyProxy = emptyProxy;
}
@Nonnull @Override
public Object create()
{
if (emptyProxy == null) {
emptyProxy = ConstructorReflection.newUninitializedInstance(concreteClass);
}
lastInstance = emptyProxy;
return emptyProxy;
}
@Override
public void clearLastInstance()
{
emptyProxy = null;
lastInstance = null;
}
}
static final class ClassInstanceFactory extends InstanceFactory
{
ClassInstanceFactory(@Nonnull Class> concreteClass) { super(concreteClass); }
@Override @Nonnull
public Object create()
{
lastInstance = ConstructorReflection.newUninitializedInstance(concreteClass);
return lastInstance;
}
@Override
public void clearLastInstance() { lastInstance = null; }
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy