MavenでTestNGテストを実行しようとしています。問題はない - 私は日食を実行したときMavenでのTestNGテストの実行に失敗しました
<suite name="Suite1">
<test name="Test1">
<groups>
<run>
<include name="Setup" />
<include name="Material" />
</run>
</groups>
<packages>
<package name="coloright.hibernate.*" />
</packages>
</test>
:ここに私の設定は次のとおりです。
のpom.xml:
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
これはTestNGのconfのファイルです。
私はMVNテストを実行します - すべてのテストが正常に実行されますが、エラーで失敗しましたビルド:あなたがいるよう
suiteXmlFiles が設定されている
が、が
デバッグモードで実行する場合は、確実なプラグインは、そのは、testng.xmlファイルを探しているところの(コンソールで)場所を報告する必要があります。それは何と言いますか?パスを省略すると、 – djangofan