Features and Stories - allure-framework/allure1 GitHub Wiki
You can group test results by features and stories (BDD-like)
In order to group your tests by features and stories in Java, simply annotate the test suite or test case with @Features or @Stories annotations. Each of these annotations can take either a single string or a string array, because one test case can relate to several features or stories:
@Features("My Feature")
@Stories({"Story1", "Story2"})
@Test
public void myTest() {
...
}