3

ねえ、プロジェクトを Maven 構造でセットアップしました。私の pom ファイルは次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.QASelenium</groupId>
    <artifactId>MyTemp</artifactId>
    <version>1.0-SNAPSHOT</version>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.14</version>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>src/main/resources/testing.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
         <!--   <scope>test</scope>     -->
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8</version>
         <!--   <scope>test</scope>   -->
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.31.0</version>
        </dependency>
    </dependencies>

</project>

私の TestNGTest.java ファイルは src/main/resources の下にあります:

import org.testng.Assert;
import org.testng.annotations.Parameters;
import org.testng.annotations.Test;


public class TestNGTest{

    @Test
    @Parameters(value="number")
    public void parameterIntTest(int number) {
        System.out.println("Parameterized Number is : " + number);
    }
}

IntelliJを使用してTestNGでコンパイルすると、なぜいつもこのエラーが発生するのですか:

org.testng.TestNGException: パラメータ 'number' はメソッド parameterIntTest の @Test で必要ですが、@Optional とマークされていないか、C:\Users(My_Name).IdeaIC12\system\temp-testng-customsuite.xml で定義されていません

誰かが私が間違って実行した場所を教えてもらえますか? 私はmavenを初めて使用します。よろしくお願いします。

4

1 に答える 1

1

すべて問題ないと思いますが、xml スイートを使用している場合は、クラスからではなくスイートからテストを実行する必要があります。

Run/Debug Configurations
Configuration -> Suite
Suite: /PATH/PROJECT/src/test/resources/testng.xml
于 2013-03-15T22:30:48.680 に答える