gpt4 book ai didi

java - 从套件内的 testNG 运行一个测试

转载 作者:行者123 更新时间:2023-12-01 21:36:01 25 4
gpt4 key购买 nike

我的test.xml文件如下

<suite name="suitename">

<test name="testname1">
<classes>
<class
name="com.org.test1" />
</classes>
</test>
<test name="testname2">
<classes>
<class
name="com.org.test2" />
</classes>
</test>

我尝试使用命令行 java org.testng TestNG test.xml -testname testname2 来运行第二个类。但是,它运行了这两个测试。

如何解决这个问题?

谢谢

最佳答案

下面是从命令提示符执行 testng.xml 所需测试的命令

  java -cp ".\bin;.\lib\*;" org.testng.TestNG testng.xml -testnames Test1

我希望您使用 -testname 来调用默认套件。

  Usage: <main class> [options] The XML suite files to run
Options:
-configfailurepolicy
Configuration failure policy (skip or continue)
-d
Output directory
-dataproviderthreadcount
Number of threads to use when running data providers
-excludegroups
Comma-separated list of group names to exclude
-groups
Comma-separated list of group names to be run
-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
-parallel
Parallel mode (methods, tests or classes)
Possible Values: [tests, methods, classes, instances, none, true, false]
-port
The port
-reporter
Extended configuration for custom report listener
-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
-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

谢谢你,穆拉利

关于java - 从套件内的 testNG 运行一个测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36949001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com