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