1

FooFixture.javaの命名規則を持つコンコーディオンテストを実行するようにMavenを設定する方法を知りたいです。テストは、src / test/specsのクラスパスにあります。別のプロファイルでやりたいのですが。

助けてくれてありがとう。

4

2 に答える 2

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>
于 2012-04-08T20:35:15.297 に答える
1

Mavenフェイルセーフプラグインを使用して、統合テストフェーズでユニットのConcordionテストを実行できます。それはsurefireプラグインに似ています。

于 2014-03-19T14:38:42.533 に答える