Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-surefire-plugin</artifactId>
  4. <version>3.0.0-M3</version>
  5. <configuration>
  6. <!-- <suiteXmlFiles>testNG.xml</suiteXmlFiles> -->
  7. <classpathScope>test</classpathScope>
  8. <skipTests>false</skipTests>
  9. <!-- <testFailureIgnore>true</testFailureIgnore> -->
  10. <testSourceDirectory>/src/test/java/testRunners</testSourceDirectory>
  11. <useTestNG>false</useTestNG>
  12. <rerunFailingTestsCount>2</rerunFailingTestsCount>
  13. </configuration>
  14. </plugin>
  15.  
  16. @RunWith(Cucumber.class)
  17. @CucumberOptions(
  18. features = "src/test/java/features",
  19. glue= {"stepDefinitions"},
  20. tags= {"@licensing01"},
  21. dryRun = false,
  22. plugin = {"com.cucumber.listener.ExtentCucumberFormatter:TestExecutionReports/TestResults.html"
  23. + ",rerun:TestExecutionReports/failed_scenarios.txt"
  24. + ",json:target/cucumber.json"},
  25. monochrome = true
  26. )
  27.  
  28. public class TestRunnerBAU extends AbstractTestNGCucumberTests{
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement