前段時間,我在我的集成測試,在我的POM文件我有這個使用FitNesse中使用FIT作爲test_system:裝修MAVE-插件相當於薄型
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>fit-maven-plugin</artifactId>
<version>2.0-beta-3</version>
<executions>
<execution>
<configuration>
<sourceDirectory>src/main/fit</sourceDirectory>
<sourceIncludes>**/*Test.html</sourceIncludes>
<outputDirectory>target/fitTest</outputDirectory>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
現在我想要做同樣的看法,但使用苗條,但我找不到SLIM的任何等效插件。
有誰知道如何用'mvn integration-test'執行一些Slim測試嗎?我看到有這個fitnesse-launcher-maven-plugin,但是我需要啓動一個服務,並且我想要像之前那樣的東西,不需要使用端口和所有東西來獲得服務
我試過這種方法,但每次我執行命令'mvn clean integration-test'結果是**測試運行:0,失敗:0,錯誤:0,跳過:0 **,但如果我打開報告,測試的一行失敗。 – jordiPons
我不知道這是否相關,但我總是使用'mvn clean test-compile failsafe:integration-test'運行。測試是使用你的命令編譯的嗎? –