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

org.wildfly.arquillian.junit.annotations.RequiresModule Maven / Gradle / Ivy

There is a newer version: 5.1.0.Beta5
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.arquillian.junit.annotations;

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.junit.jupiter.api.extension.ExtendWith;
import org.wildfly.arquillian.junit.condition.RequiresModuleExecutionCondition;

/**
 * Enables or disables a test based on whether the module exists. You can optionally check the version of the module
 * to determine if the modules version is greater than the {@linkplain #minVersion() minimum version}.
 *
 * @author James R. Perkins
 */
@Inherited
@Documented
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@ExtendWith(RequiresModuleExecutionCondition.class)
public @interface RequiresModule {

    /**
     * The minimum version of the module resource.
     * 

* Note that if more than one resource is defined, only the first resource is used to determine the version. *

* * @return the minimum version */ String minVersion() default ""; /** * A reference for the issue tracker to be reported in the response for a disabled test. * * @return the issue reference */ String issueRef() default ""; /** * The reason message for disabled test. * * @return the reason message */ String reason() default ""; /** * The module that is required for the test to run. * * @return the module name */ String value(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy