com.annotation.values.SkipIf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AppiumTestDistribution Show documentation
Show all versions of AppiumTestDistribution Show documentation
A tool run Android and iOS test in parallel across devices
package com.annotation.values;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is processed by {@link } class.
*
* Use this annotation if you want to skip a childTest based plaform.
*
* @author saikrisv
*/
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface SkipIf {
String platform();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy