Skip to content

Commit

Permalink
fix on Allure story
Browse files Browse the repository at this point in the history
  • Loading branch information
MalgorzataDzienia committed Jul 12, 2024
1 parent 0a344ef commit 63972df
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*/

@Epic(PrjEpics.DEMO_QA)
@Feature("GUI Monkey Tests")
public class MonkeyTests extends BaseTest {

private final DemoQALoginPage demoQALoginPage = new DemoQALoginPage();
Expand All @@ -41,24 +42,20 @@ public void beforeEach() {

}
@TmsLink("Test Management System ID")
@Feature("GUI")
@Description("Monkey test description")
//JUnit annotations
@Test
@Tag(Status.REVIEW)
void MonkeyTest_fill_form_test() throws IOException {
void demoQALoginPageMonkeyTest_fill_form_test() throws IOException {
GremlinsHelper gremlinsHelper = new GremlinsHelper();
GremlinsHelper.setupGremlinsScript(getPage());
GremlinsHelper.startGremlinHordeWithGremlinTypes(getPage(), List.of("clicker", "formFiller", "typer"));
}

@Test
@Tag(Status.REVIEW)
void MonkeyTest_test() throws IOException {
void demoQALoginPageMonkeyTest_test() throws IOException {
GremlinsHelper gremlinsHelper = new GremlinsHelper();
GremlinsHelper.setupGremlinsScript(getPage());
GremlinsHelper.startGremlinHorde(getPage());

}
}

0 comments on commit 63972df

Please sign in to comment.