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

org.junit.jupiter.api.extension.DynamicTestInvocationContext Maven / Gradle / Ivy

There is a newer version: 5.11.3
Show newest version
/*
 * Copyright 2015-2024 the original author or authors.
 *
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v2.0 which
 * accompanies this distribution and is available at
 *
 * https://www.eclipse.org/legal/epl-v20.html
 */

package org.junit.jupiter.api.extension;

import static org.apiguardian.api.API.Status.EXPERIMENTAL;

import org.apiguardian.api.API;
import org.junit.jupiter.api.function.Executable;

/**
 * {@code DynamicTestInvocationContext} represents the context of a
 * single invocation of a {@linkplain org.junit.jupiter.api.DynamicTest
 * dynamic test}.
 *
 * @since 5.8
 * @see org.junit.jupiter.api.DynamicTest
 */
@API(status = EXPERIMENTAL, since = "5.8")
public interface DynamicTestInvocationContext {

	/**
	 * Get the {@code Executable} of this dynamic test invocation context.
	 *
	 * @return the executable of the dynamic test invocation, never {@code null}
	 */
	Executable getExecutable();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy