@Documented @Inherited @Retention(value=RUNTIME) @Target(value={METHOD,TYPE}) public @interface Features
Features
annotation. This annotation can take either one string or a string
array because one test case can relate to several features:
@Features({"Feature1", "Feature2"})
@Test
public void myTest() {
...
}
@Features("Feature")
@Test
public void myTest() {
...
}
public abstract String[] value
Copyright © 2017 Yandex. All rights reserved.