如何使用maven进行一致性测试?

时间:2012-02-20 13:51:23

标签: maven concordion

我想知道如何设置maven来运行具有FooFixture.java命名约定的协调测试。测试位于src / test / specs中的类路径中。我想在一个单独的档案中这样做。

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

我最终设置测试是通过创建不同的配置文件来运行验收测试。

这里给出的一个例子:

        <profile>
        <id>acceptance-test</id>
        <activation>
            <property>
                <name>type</name>
                <value>acceptance</value>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>build-helper-maven-plugin</artifactId>
                    <version>1.7</version>
                    <executions>
                        <execution>
                            <id>add-specs-source</id>
                            <phase>compile</phase>
                            <goals>
                                <goal>add-test-source</goal>
                            </goals>
                            <configuration>
                                <sources>
                                    <source>${basedir}/src/test/specs</source>
                                </sources>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.3.1</version>
                    <configuration>
                        <encoding>UTF-8</encoding>
                        <source>1.5</source>
                        <target>1.5</target>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.11</version>
                    <configuration>
                        <forkMode>pertest</forkMode>
                        <argLine>-Xms1024m -Xmx1024m</argLine>
                        <testFailureIgnore>false</testFailureIgnore>
                        <skip>false</skip>
                        <testSourceDirectory>src/test/specs</testSourceDirectory>
                        <includes>
                            <include>**/*Fixture.java</include>
                        </includes>
                        <systemPropertyVariables>
                            <propertyName>concordion.output.dir</propertyName>
                            <buildDirectory>target/concordion</buildDirectory>
                        </systemPropertyVariables>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

答案 1 :(得分:1)

您可以使用maven failsafe插件在集成测试阶段运行单元Concordion测试。它类似于surefire插件。