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

org.springframework.test.context.MethodInvoker Maven / Gradle / Ivy

There is a newer version: 6.1.13
Show newest version
/*
 * Copyright 2002-2023 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.test.context;

import java.lang.reflect.Method;

import org.springframework.lang.Nullable;

/**
 * {@code MethodInvoker} defines a generic API for invoking a {@link Method}
 * within the Spring TestContext Framework.
 *
 * 

Specifically, a {@code MethodInvoker} is made available to a * {@link TestExecutionListener} via {@link TestContext#getMethodInvoker()}, and * a {@code TestExecutionListener} can use the invoker to transparently benefit * from any special method invocation features of the underlying testing framework. * *

For example, when the underlying testing framework is JUnit Jupiter, a * {@code TestExecutionListener} can use a {@code MethodInvoker} to invoke * arbitrary methods with JUnit Jupiter's * {@linkplain org.junit.jupiter.api.extension.ExecutableInvoker parameter resolution * mechanism}. For other testing frameworks, the {@link #DEFAULT_INVOKER} will be * used. * * @author Sam Brannen * @since 6.1 * @see org.junit.jupiter.api.extension.ExecutableInvoker * @see org.springframework.util.MethodInvoker */ public interface MethodInvoker { /** * Shared instance of the default {@link MethodInvoker}. *

This invoker never provides arguments to a {@link Method}. */ MethodInvoker DEFAULT_INVOKER = new DefaultMethodInvoker(); /** * Invoke the supplied {@link Method} on the supplied {@code target}. *

When the {@link #DEFAULT_INVOKER} is used — for example, when * the underlying testing framework is JUnit 4 or TestNG — the method * must not declare any formal parameters. When the underlying testing * framework is JUnit Jupiter, parameters will be dynamically resolved via * registered {@link org.junit.jupiter.api.extension.ParameterResolver * ParameterResolvers} (such as the * {@link org.springframework.test.context.junit.jupiter.SpringExtension * SpringExtension}). * @param method the method to invoke * @param target the object on which to invoke the method, may be {@code null} * if the method is {@code static} * @return the value returned from the method invocation, potentially {@code null} * @throws Exception if any error occurs */ @Nullable Object invoke(Method method, @Nullable Object target) throws Exception; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy