在TestNg Runner中,我不是执行代码,而是使用功能文件获得结果
我需要使用TestNg runner执行。下面的错误
[TestNG] No tests found. Nothing was run
Usage: <main class> [options] The XML suite files to run
Options:
-alwaysrunlisteners
Should MethodInvocation Listeners be run even for skipped methods
Default: true
-configfailurepolicy
Configuration failure policy (skip or continue)
-d
Output directory
-dataproviderthreadcount
Number of threads to use when running data providers
-dependencyinjectorfactory
The dependency injector factory implementation that TestNG should use.
-excludegroups
Comma-separated list of group names to exclude
-failwheneverythingskipped
Should TestNG fail execution if all tests were skipped and nothing was
run.
Default: false
-generateResultsPerSuite
Should TestNG consider failures in Data Providers as test failures.
Default: false
-groups
Comma-separated list of group names to be run
-ignoreMissedTestNames
Ignore missed test names given by '-testnames' and continue to run
existing tests, if any.
Default: false
-includeAllDataDrivenTestsWhenSkipping
Should TestNG report all iterations of a data driven test as individual
skips, in-case of upstream failures.
Default: false
-junit
JUnit mode
Default: false
-listener
List of .class files or list of class names implementing ITestListener
or ISuiteListener
-methods
Comma separated of test methods
Default: []
-methodselectors
List of .class files or list of class names implementing IMethodSelector
-mixed
Mixed mode - autodetect the type of current test and run it with
appropriate runner
Default: false
-objectfactory
List of .class files or list of class names implementing
ITestRunnerFactory
-overrideincludedmethods
Comma separated fully qualified class names of listeners that should be
skipped from being wired in via Service Loaders.
Default: false
-parallel
Parallel mode (methods, tests or classes)
Possible Values: [tests, methods, classes, instances, none]
-port
The port
-propagateDataProviderFailureAsTestFailure
Should TestNG consider failures in Data Providers as test failures.
Default: false
-reporter
Extended configuration for custom report listener
-spilistenerstoskip
Comma separated fully qualified class names of listeners that should be
skipped from being wired in via Service Loaders.
Default: <empty string>
-suitename
Default name of test suite, if not specified in suite definition file or
source code
-suitethreadpoolsize
Size of the thread pool to use to run suites
Default: 1
-testclass
The list of test classes
-testjar
A jar file containing the tests
-testname
Default name of test, if not specified in suitedefinition file or source
code
-testnames
The list of test names to run
-testrunfactory, -testRunFactory
The factory used to create tests
-threadcount
Number of threads to use when running tests in parallel
-threadpoolfactoryclass
The threadpool executor factory implementation that TestNG should use.
-usedefaultlisteners
Whether to use the default listeners
Default: true
-log, -verbose
Level of verbosity
-xmlpathinjar
The full path to the xml file inside the jar file (only valid if
-testjar was specified)
Default: testng.xml
字符串
1条答案
按热度按时间htzpubme1#
要通过TestNG运行Cucumber功能,请确保完成以下步骤:
1.包含Cucumber-testNG依赖:https://mvnrepository.com/artifact/io.cucumber/cucumber-testng
字符串
该类必须扩展AbstractTestNGCucumberTests类
src/test/resources/features是.feature文件所在文件夹的路径
stepdefinitions是包的名称,其中包含实现步骤的代码的类位于其中。
型
通过这种设置,您应该能够运行TestNG XML,它将从位于指定文件夹中的所有.feature文件执行所有场景。