java 无法使用Testng运行Cucumber,但如果我在功能文件中执行,它可以工作

hi3rlvi2  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(283)

在TestNg Runner中,我不是执行代码,而是使用功能文件获得结果
我需要使用TestNg runner执行。下面的错误

  1. [TestNG] No tests found. Nothing was run
  2. Usage: <main class> [options] The XML suite files to run
  3. Options:
  4. -alwaysrunlisteners
  5. Should MethodInvocation Listeners be run even for skipped methods
  6. Default: true
  7. -configfailurepolicy
  8. Configuration failure policy (skip or continue)
  9. -d
  10. Output directory
  11. -dataproviderthreadcount
  12. Number of threads to use when running data providers
  13. -dependencyinjectorfactory
  14. The dependency injector factory implementation that TestNG should use.
  15. -excludegroups
  16. Comma-separated list of group names to exclude
  17. -failwheneverythingskipped
  18. Should TestNG fail execution if all tests were skipped and nothing was
  19. run.
  20. Default: false
  21. -generateResultsPerSuite
  22. Should TestNG consider failures in Data Providers as test failures.
  23. Default: false
  24. -groups
  25. Comma-separated list of group names to be run
  26. -ignoreMissedTestNames
  27. Ignore missed test names given by '-testnames' and continue to run
  28. existing tests, if any.
  29. Default: false
  30. -includeAllDataDrivenTestsWhenSkipping
  31. Should TestNG report all iterations of a data driven test as individual
  32. skips, in-case of upstream failures.
  33. Default: false
  34. -junit
  35. JUnit mode
  36. Default: false
  37. -listener
  38. List of .class files or list of class names implementing ITestListener
  39. or ISuiteListener
  40. -methods
  41. Comma separated of test methods
  42. Default: []
  43. -methodselectors
  44. List of .class files or list of class names implementing IMethodSelector
  45. -mixed
  46. Mixed mode - autodetect the type of current test and run it with
  47. appropriate runner
  48. Default: false
  49. -objectfactory
  50. List of .class files or list of class names implementing
  51. ITestRunnerFactory
  52. -overrideincludedmethods
  53. Comma separated fully qualified class names of listeners that should be
  54. skipped from being wired in via Service Loaders.
  55. Default: false
  56. -parallel
  57. Parallel mode (methods, tests or classes)
  58. Possible Values: [tests, methods, classes, instances, none]
  59. -port
  60. The port
  61. -propagateDataProviderFailureAsTestFailure
  62. Should TestNG consider failures in Data Providers as test failures.
  63. Default: false
  64. -reporter
  65. Extended configuration for custom report listener
  66. -spilistenerstoskip
  67. Comma separated fully qualified class names of listeners that should be
  68. skipped from being wired in via Service Loaders.
  69. Default: <empty string>
  70. -suitename
  71. Default name of test suite, if not specified in suite definition file or
  72. source code
  73. -suitethreadpoolsize
  74. Size of the thread pool to use to run suites
  75. Default: 1
  76. -testclass
  77. The list of test classes
  78. -testjar
  79. A jar file containing the tests
  80. -testname
  81. Default name of test, if not specified in suitedefinition file or source
  82. code
  83. -testnames
  84. The list of test names to run
  85. -testrunfactory, -testRunFactory
  86. The factory used to create tests
  87. -threadcount
  88. Number of threads to use when running tests in parallel
  89. -threadpoolfactoryclass
  90. The threadpool executor factory implementation that TestNG should use.
  91. -usedefaultlisteners
  92. Whether to use the default listeners
  93. Default: true
  94. -log, -verbose
  95. Level of verbosity
  96. -xmlpathinjar
  97. The full path to the xml file inside the jar file (only valid if
  98. -testjar was specified)
  99. Default: testng.xml

字符串

htzpubme

htzpubme1#

要通过TestNG运行Cucumber功能,请确保完成以下步骤:
1.包含Cucumber-testNG依赖:https://mvnrepository.com/artifact/io.cucumber/cucumber-testng

  1. Cucumber runner类被创建,例如:
  1. package testrunners;
  2. import io.cucumber.testng.AbstractTestNGCucumberTests;
  3. import io.cucumber.testng.CucumberOptions;
  4. @CucumberOptions(
  5. features = "src/test/resources/features",
  6. glue = {"stepdefinitions"},
  7. plugin = {
  8. "pretty",
  9. "json:cucumber.json"
  10. }
  11. )
  12. public class TestRunner extends AbstractTestNGCucumberTests {}

字符串
该类必须扩展AbstractTestNGCucumberTests

src/test/resources/features是.feature文件所在文件夹的路径
stepdefinitions是包的名称,其中包含实现步骤的代码的类位于其中。

  1. TestNG XML运行上面步骤中的Cucumber runner类,例如:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
  3. <suite name="Default Suite" configfailurepolicy="continue" time-
  4. out="60000">
  5. <test name="Main tests">
  6. <classes>
  7. <class name="testrunners.TestRunner"/>
  8. </classes>
  9. </test>
  10. </suite>


通过这种设置,您应该能够运行TestNG XML,它将从位于指定文件夹中的所有.feature文件执行所有场景。

展开查看全部

相关问题