Java Code Examples for io.qameta.allure.Allure#step()

The following examples show how to use io.qameta.allure.Allure#step() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EachFixtureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@BeforeEach
void setUp() {
    Allure.step("setUp 1");
    Allure.step("setUp 2");
}
 
Example 2
Source File: EachFixtureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@Test
void test1() {
    Allure.step("test1 1");
    Allure.step("test1 2");
}
 
Example 3
Source File: EachFixtureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@AfterEach
void tearDown() {
    Allure.step("tearDown 1");
    Allure.step("tearDown 2");
}
 
Example 4
Source File: AllFixtureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@BeforeAll
static void setUpAll() {
    Allure.step("setUpAll 1");
    Allure.step("setUpAll 2");
}
 
Example 5
Source File: AllFixtureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@Test
void test1() {
    Allure.step("test1 1");
    Allure.step("test1 2");
}
 
Example 6
Source File: AllFixtureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@AfterAll
static void tearDownAll() {
    Allure.step("tearDownAll 1");
    Allure.step("tearDownAll 2");
}
 
Example 7
Source File: BeforeEachFixtureFailureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@BeforeEach
void setUp() {
    Allure.step("setUp 1");
    Allure.step("setUp 2");
    throw new RuntimeException("ta da");
}
 
Example 8
Source File: BeforeEachFixtureFailureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@Test
void test1() {
    Allure.step("test1 1");
    Allure.step("test1 2");
}
 
Example 9
Source File: AfterEachFixtureFailureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@AfterEach
void tearDown() {
    Allure.step("tearDown 1");
    Allure.step("tearDown 2");
    throw new RuntimeException("ta da");
}
 
Example 10
Source File: AfterEachFixtureFailureSupport.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@Test
void test1() {
    Allure.step("test1 1");
    Allure.step("test1 2");
}
 
Example 11
Source File: TestWithSteps.java    From allure-java with Apache License 2.0 4 votes vote down vote up
@Test
public void testWithSteps() {
    Allure.step("step1");
    Allure.step("step2");
    Allure.step("step3");
}