6

我在 Eclipse 中有一个 Java 项目,我的src/test目录中有 JUnit 测试。我还使用 Caliper 微基准向我的测试添加了一个类,我希望能够在 Eclipse 中运行这些测试。

由于 Caliper 代码是测试代码,我已将 Caliper 添加为 Maventest范围内的依赖项。这使得它在我运行 JUnit 测试时出现在类路径中,但是我看不到在类路径中运行具有测试依赖项的任意类的方法。我尝试做的是为 Java 应用程序添加一个新的运行配置,以为我可以CaliperMain使用正确的类作为参数启动,但是 Caliper jar 不在类路径上,我看不到如何添加它。

我不想将我的基准代码和依赖项移动到main范围内,因为它是测试代码!将它移到一个完全独立的项目中似乎严重过度。

4

1 回答 1

5

您应该可以使用Maven Exec Plugin执行此操作。对于我的项目,我选择制作一个可以使用 maven 命令运行的基准配置文件mvn compile -P benchmarks

要配置这样的内容,您可以将以下内容添加到您的中,使用标签pom.xml将类路径的范围指定为测试:<classpathScope>

<profiles>
    <profile>
        <id>benchmarks</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>exec-maven-plugin</artifactId>
                    <version>1.2.1</version>
                    <executions>
                        <execution>
                            <id>caliper</id>
                            <phase>compile</phase>
                            <goals>
                                <goal>java</goal>
                            </goals>
                            <configuration>
                                <classpathScope>test</classpathScope>
                                <mainClass>com.google.caliper.runner.CaliperMain</mainClass>
                                <commandlineArgs>com.stackoverflow.BencharkClass,com.stackoverflow.AnotherBenchmark</commandlineArgs>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

或者,如果您想为 caliper 指定很多选项,使用<arguments>标签可能更容易:

<executions>
    <execution>
        <id>caliper</id>
        <phase>compile</phase>
        <goals>
            <goal>java</goal>
        </goals>
        <configuration>
            <classpathScope>test</classpathScope>
            <mainClass>com.google.caliper.runner.CaliperMain</mainClass>
            <arguments>
                <argument>com.stackoverflow.BencharkClass</argument>
                <argument>--instrument</argument>
                <argument>runtime</argument>
                <argument>-Cinstrument.allocation.options.trackAllocations=false</argument>
            </arguments>
        </configuration>
    </execution>
</executions>

更多配置选项(-Cinstrument.allocation.options.trackAllocations如上)可在此处找到,更多运行时选项(--instrument如上)可在此处找到。

然后,如果您使用的是 Eclipse m2 Maven 插件,您可以右键单击您的项目文件夹并在输入框中选择并输入Run as... -> Maven Build...类似的内容,然后在输入框中单击,您应该会在 Eclipse 控制台中看到输出。clean installGoalsbenchmarksProfilesRun

重要的是要注意,我通过检查源代码使用了 Caliper 的本地快照构建git clone https://code.google.com/p/caliper/,这是在本文发布时推荐的,以便利用最新的 API。

于 2013-09-20T14:14:41.473 回答