/*
* Copyright 2015-2020 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.engine.extension;
import static org.apiguardian.api.API.Status.INTERNAL;
import org.apiguardian.api.API;
import org.junit.jupiter.api.extension.Extension;
An ExtensionRegistrar
is used to register extensions. Since: 5.5
/**
* An {@code ExtensionRegistrar} is used to register extensions.
*
* @since 5.5
*/
@API(status = INTERNAL, since = "5.5")
public interface ExtensionRegistrar {
Register the supplied Extension
, without checking if an extension of that type has already been registered. Semantics for Source
If an extension is registered declaratively via @ExtendWith
, the source
and the extension
should be the same object. However, if an extension is registered programmatically via @RegisterExtension
, the source
object should be the Field
that is annotated with @RegisterExtension
. Similarly, if an extension is registered programmatically as a lambda expression or method reference, the source
object should be the underlying Method
that implements the extension API.
Params: - extension – the extension to register; never
null
- source – the source of the extension; never
null
/**
* Register the supplied {@link Extension}, without checking if an extension
* of that type has already been registered.
*
* <h4>Semantics for Source</h4>
*
* <p>If an extension is registered <em>declaratively</em> via
* {@link org.junit.jupiter.api.extension.ExtendWith @ExtendWith}, the
* {@code source} and the {@code extension} should be the same object.
* However, if an extension is registered <em>programmatically</em> via
* {@link org.junit.jupiter.api.extension.RegisterExtension @RegisterExtension},
* the {@code source} object should be the {@link java.lang.reflect.Field}
* that is annotated with {@code @RegisterExtension}. Similarly, if an
* extension is registered <em>programmatically</em> as a lambda expression
* or method reference, the {@code source} object should be the underlying
* {@link java.lang.reflect.Method} that implements the extension API.
*
* @param extension the extension to register; never {@code null}
* @param source the source of the extension; never {@code null}
*/
void registerExtension(Extension extension, Object source);
}