org.junit.jupiter.api.IndicativeSentencesGeneration Maven / Gradle / Ivy
Show all versions of junit-jupiter-api Show documentation
/*
* 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;
import static org.apiguardian.api.API.Status.STABLE;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.apiguardian.api.API;
import org.junit.jupiter.api.DisplayNameGenerator.IndicativeSentences;
/**
* {@code @IndicativeSentencesGeneration} is used to register the
* {@link IndicativeSentences} display name generator and configure it.
*
* The {@link #separator} for sentence fragments and the display name
* {@link #generator} for sentence fragments are configurable. If this annotation
* is declared without any attributes — for example,
* {@code @IndicativeSentencesGeneration} or {@code @IndicativeSentencesGeneration()}
* — the default configuration will be used.
*
*
This annotation is inherited from superclasses and implemented
* interfaces. It is also inherited from {@linkplain Class#getEnclosingClass()
* enclosing classes} for {@link Nested @Nested} test classes.
*
* @since 5.7
* @see DisplayName
* @see DisplayNameGenerator
* @see DisplayNameGenerator.IndicativeSentences
* @see DisplayNameGeneration
*/
@DisplayNameGeneration(IndicativeSentences.class)
@Target({ ElementType.ANNOTATION_TYPE, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@API(status = STABLE, since = "5.10")
public @interface IndicativeSentencesGeneration {
String DEFAULT_SEPARATOR = ", ";
Class extends DisplayNameGenerator> DEFAULT_GENERATOR = DisplayNameGenerator.Standard.class;
/**
* Custom separator for sentence fragments.
*
*
Defaults to {@value #DEFAULT_SEPARATOR}.
*/
String separator() default DEFAULT_SEPARATOR;
/**
* Custom display name generator to use for sentence fragments.
*
*
Defaults to {@link DisplayNameGenerator.Standard}.
*/
Class extends DisplayNameGenerator> generator() default DisplayNameGenerator.Standard.class;
}