Skip to content

Commit

Permalink
Minor update to trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 15, 2024
1 parent 8381ecb commit 46c21a4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ public class AmbiguousScenarioTest {
@CucumberOptions(features = "src/test/resources/features/AmbiguousTest.feature", glue = {
"com.epam.reportportal.cucumber.integration.feature" }, plugin = { "pretty",
"com.epam.reportportal.cucumber.integration.TestStepReporter" })
public static class SimpleTestStepReporter extends AbstractTestNGCucumberTests {
public static class SimpleTestStepReporterTest extends AbstractTestNGCucumberTests {

}

@CucumberOptions(features = "src/test/resources/features/AmbiguousTest.feature", glue = {
"com.epam.reportportal.cucumber.integration.feature" }, plugin = { "pretty",
"com.epam.reportportal.cucumber.integration.TestScenarioReporter" })
public static class SimpleTestScenarioReporter extends AbstractTestNGCucumberTests {
public static class SimpleTestScenarioReporterTest extends AbstractTestNGCucumberTests {

}

Expand All @@ -81,7 +81,7 @@ public void setup() {

@Test
public void verify_step_reporter_ambiguous_item() {
TestUtils.runTests(SimpleTestStepReporter.class);
TestUtils.runTests(SimpleTestStepReporterTest.class);

ArgumentCaptor<StartTestItemRQ> stepCaptor = ArgumentCaptor.forClass(StartTestItemRQ.class);
verify(client, times(1)).startTestItem(same(testId), stepCaptor.capture());
Expand All @@ -105,7 +105,7 @@ public void verify_step_reporter_ambiguous_item() {
@Test
public void verify_scenario_reporter_ambiguous_item() {
TestUtils.mockNestedSteps(client, nestedSteps);
TestUtils.runTests(SimpleTestScenarioReporter.class);
TestUtils.runTests(SimpleTestScenarioReporterTest.class);

ArgumentCaptor<StartTestItemRQ> stepCaptor = ArgumentCaptor.forClass(StartTestItemRQ.class);
verify(client, times(1)).startTestItem(same(stepIds.get(0)), stepCaptor.capture());
Expand Down

0 comments on commit 46c21a4

Please sign in to comment.