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 |
@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 |
@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 |
@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 |
@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 |
@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 |
@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 |
@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 |
@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 |
@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 |
@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 |
@Test public void testWithSteps() { Allure.step("step1"); Allure.step("step2"); Allure.step("step3"); }