获得以下异常是Testng但我的项目中没有显示错误[重复]

问题描述 投票:-1回答:1

这个问题在这里已有答案:

Default suite
Total tests run: 0, Failures: 0, Skips: 0
Configuration Failures: 1, Skips: 0
===============================================

[TestNG] No tests found. Nothing was run
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
maven selenium-webdriver testng
1个回答
0
投票

我认为这是一个配置问题。由于您未在此处提供pom.xml详细信息,因此我想指出一些可以帮助您的检查点!

  1. 将testng.xml添加到项目中,指向需要执行的正确类。
  2. 使用下面描述的准确信息将pom.xml添加到项目中。
  3. 在pom.xml文件中包含maven-compiler-plugin。
  4. 在pom.xml文件中包含maven-surefire-plugin。
  5. 在maven-surefire-plugin下的pom.xml中,不要忘记添加suitexmlfiles标记,该标记将指定要执行的testng.xml文件。

感谢致敬,

Sandeep jaju

© www.soinside.com 2019 - 2024. All rights reserved.