1. ホーム
  2. junit

[解決済み] IntelliJ ユニットテスト実行時のエラー。メインクラス ${surefireArgLine} が見つからないか、ロードされませんでした。

2023-06-03 08:50:29

質問

IntelliJでUnitテストを実行すると、以下のエラーが発生します。 Error: メインクラス${surefireArgLine}を見つけるかロードすることができませんでした。 私はmavenを使用しており、pom.xmlで私は持っています。

<properties>
    ...
    <surefire.argLine />
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>com.mysema.maven</groupId>
            <artifactId>apt-maven-plugin</artifactId>
            <version>1.1.1</version>
            <executions>
                <execution>
                    <goals>
                        <goal>process</goal>
                    </goals>
                    <configuration>
                        <outputDirectory>target/generated-sources/java</outputDirectory>
                        <processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
                    </configuration>
                </execution>
            </executions>
        </plugin>

        <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.17</version>
        <configuration>
             <!--Sets the VM argument line used when unit tests are run.-->
            <argLine>${surefire.argLine}</argLine>
        </configuration>
    </plugin>
  <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>0.7.1.201405082137</version>
            <executions>
                <!--
                    Prepares the property pointing to the JaCoCo runtime agent which
                    is passed as VM argument when Maven the Surefire plugin is executed.
                -->
                <execution>
                    <id>pre-unit-test</id>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                    <configuration>
                        <!--Sets the path to the file which contains the execution data.-->
                        <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
                        <!--
                            Sets the name of the property containing the settings
                            for JaCoCo runtime agent.
                        -->
                        <propertyName>surefireArgLine</propertyName>
                    </configuration>
                </execution>
   ...

どなたか同じような問題をお持ちの方はいらっしゃいませんか?どのようにsurefireArgLineの値を設定するには?

どのように解決するのですか?

私は同じ問題を持っていたし、私は私が上の解決策を見つけたと思う。 vertx-issue tracker .

要するに、IntelliJ Maven (surefire プラグイン) の統合が異なる動作をするように設定する必要があるのです。

これは、IntelliJ 14.1.6 with mvn 3.3.9で、私のために動作します。 Preferences -> Build,Execution,Deployment -> Build Tools -> Maven -> Running Tests

IntelliJ 2019以上の場合 Settings-> Build,Execution,Deployment -> Build Tools -> Maven -> Running Tests

チェックをはずす argLine