Annotation Interface ClassTemplate


@ClassTemplate is used to signal that the annotated class is a class template.

In contrast to regular test classes, a class template is not directly a test class but rather a template for a set of test cases. As such, it is designed to be invoked multiple times depending on the number of invocation contexts returned by the registered providers. Must be used together with at least one provider. Otherwise, execution will fail.

Each invocation of a class template method behaves like the execution of a regular test class with full support for the same lifecycle callbacks and extensions.

@ClassTemplate may be combined with @Nested and a class template may contain regular nested test classes or nested class templates.

@ClassTemplate may also be used as a meta-annotation in order to create a custom composed annotation that inherits the semantics of @ClassTemplate.

Inheritance

This annotation is inherited to subclasses.

Since:
5.13
See Also: