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

org.junit.jupiter.api.Tag Maven / Gradle / Ivy

There is a newer version: 5.11.0-M1
Show newest version
/*
 * Copyright 2015-2018 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
 *
 * http://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.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.apiguardian.api.API;

/**
 * {@code @Tag} is a {@linkplain Repeatable repeatable} annotation that is
 * used to declare a tag for the annotated test class or test method.
 *
 * 

Tags are used to filter which tests are executed for a given test * plan. For example, a development team may tag tests with values such as * {@code "fast"}, {@code "slow"}, {@code "ci-server"}, etc. and then supply a * list of tags to be included in or excluded from the current test plan, * potentially dependent on the current environment. * *

Syntax Rules for Tags

*
    *
  • A tag must not be blank.
  • *
  • A trimmed tag must not contain whitespace.
  • *
  • A trimmed tag must not contain ISO control characters.
  • *
  • A trimmed tag must not contain any of the following * reserved characters. *
      *
    • {@code ,}: comma
    • *
    • {@code (}: left parenthesis
    • *
    • {@code )}: right parenthesis
    • *
    • {@code &}: ampersand
    • *
    • {@code |}: vertical bar
    • *
    • {@code !}: exclamation point
    • *
    *
  • *
* * @since 5.0 * @see Tags * @see Test */ @Target({ ElementType.TYPE, ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @Repeatable(Tags.class) @API(status = STABLE, since = "5.0") public @interface Tag { /** * The tag. * *

Note: the tag will first be {@linkplain String#trim() trimmed}. If the * supplied tag is syntactically invalid after trimming, the error will be * logged as a warning, and the invalid tag will be effectively ignored. See * {@linkplain Tag Syntax Rules for Tags}. */ String value(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy