Skip to content

Commit

Permalink
added description
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshi-mantu committed Mar 26, 2024
1 parent 6f0ab76 commit 0fb28e7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/test/java/io/qameta/allure/IssuesRestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@Layer("rest")
@Owner("baev")
@Feature("TestParameters")
@Feature("Tests Parameters")
public class IssuesRestTest {

private static final String OWNER = "allure-framework";
Expand All @@ -23,8 +23,9 @@ public class IssuesRestTest {

@Story("Dynamic parameter")
@Microservice("Report")
@Tags({@Tag("parameter"), @Tag("dynamic"), @Tag("usecase")})
@ParameterizedTest(name = "Should generate in progress results each rerun of a pipeline ")
@Tags({@Tag("parameter"), @Tag("dynamic")})
@Description("If reran this test will leave 'In progress' test results in Allure Testops launch.")
@ParameterizedTest(name = "Should generate in progress results each rerun of a pipeline")
@MethodSource("epochTimestamps")
public void shouldDeleteUserNote(@Param(value = "HashOrSomething") long epochTimestamp) {
Date date = new Date(epochTimestamp);
Expand All @@ -34,7 +35,7 @@ public void shouldDeleteUserNote(@Param(value = "HashOrSomething") long epochTim
}
static Stream<Long> epochTimestamps() {
long epochOne = System.currentTimeMillis();
long epochTwo = System.currentTimeMillis() + 1000012;
long epochTwo = System.currentTimeMillis() + 1000123;
return Stream.of(epochOne, epochTwo);
}

Expand Down

0 comments on commit 0fb28e7

Please sign in to comment.