M
Size: a a a
M
M
AV
AV
@BeforeAll
static void init(){
AllureLifecycle a=Allure.getLifecycle();
a.startTestCase("a1");
beforeAll();
a.stopTestCase("a1");
}AV
AV
AV
AV
@BeforeAll
static void init(){
AllureLifecycle a=Allure.getLifecycle();
TestResult result=new TestResult();
result.setUuid("a1");
a.scheduleTestCase(result);
a.startTestCase("a1");
beforeAll();
a.stopTestCase("a1");
}AV
AV
AV
@BeforeAll
static void init(){
AllureLifecycle a=Allure.getLifecycle();
TestResultContainer container=new TestResultContainer();
container.setUuid("c1");
a.startTestContainer(container);
TestResult result=new TestResult();
result.setUuid("a1");
a.scheduleTestCase(result);
a.startTestCase("a1");
beforeAll();
a.stopTestCase("a1");
a.stopTestContainer("c1");
}AV
AV
AV
M
AV
M
AV
M
AV