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

org.openstack4j.api.SkipTest Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version

package org.openstack4j.api;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation allowing TestNG to skip test for a specific connector
 * 
 * @author Bruno Semperlotti
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface SkipTest {
    
    /**
     * A regex identifying the targeted HTTP connector name
     * 
     * 

Examples: * * "Jersey 2 Connector", ".*" * *

* * @see org.openstack4j.core.transport.internal.HttpExecutor#getExecutorName */ public String connector(); /** * The GitHub issue identifier (optional) */ public int issue() default -1; /** * A message describing the reason of test skip (optional) */ public String description() default ""; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy