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

org.mockito.creation.instance.Instantiator Maven / Gradle / Ivy

/*
 * Copyright (c) 2016 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.creation.instance;

/**
 * Provides instances of classes.
 * See more information about Mockito plugin {@link org.mockito.plugins.InstantiatorProvider2}
 *
 * @since 2.15.4
 */
public interface Instantiator {

    /**
     * Creates instance of given class
     *
     * @since 2.15.4
     */
     T newInstance(Class cls);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy