junit

hudsonから、mavenのjunitにパラメータを渡す

matrix projectや、普通のプロジェクトでパラメータを渡してビルドするときに、そのパラメータをもらってテストするにはmaven-surefire-plugin 2.5とかなら <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.5</version> <configuration> <systemPropertyVariables> <propertyName>firefox</propertyName> </systempropertyvariables></configuration></plugin>

hudsonでテスト結果集計したいので、junit形式の結果出力するテストランナー

hudsonでテスト結果集計したいので、junit形式の結果出力するテストランナー あるのかなぁとおもったんだけど、パッとみつけられず。cucumberにはjunit形式で出力するオプションがあるようなんだけど、、、Customizing the Ruby TestRunner « End of Line ht…