如何使用Maven运行手风琴测试? [英] How to run concordion test with maven?

查看:77
本文介绍了如何使用Maven运行手风琴测试?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何设置Maven以运行具有FooFixture.java命名约定的手风琴测试.测试位于src/test/specs中的类路径上.我想在一个单独的配置文件中进行此操作.

I am wondering how to set up maven to run concordion tests having a FooFixture.java naming convention. The tests are on the classpath in src/test/specs. I would like to do it in a separate profile.

感谢您的帮助.

推荐答案

我最终通过创建其他配置文件来运行验收测试来设置测试.

I finally set the tests up is by creating a different profile to run the acceptance tests.

此处提供一个示例:

        <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>

这篇关于如何使用Maven运行手风琴测试?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆