My development environment includes Maven, Failsafe and Spring testing IS (AbstractJUnit4SpringContextTests).
I'm looking for a way to collect statistics about the integration tests run.
Information such as Test duration, process memory, etc...
What is the best way to collect such information with the above configuration (and to integrate with the maven flow).
Asked
Active
Viewed 187 times
0

Tunaki
- 132,869
- 46
- 340
- 423

Avner Levy
- 6,601
- 9
- 53
- 92
-
I would say that probably you can get some of the data from Sonar, but I don't know if sonar has a plugin to report memory / cpu usage. – Augusto Jan 07 '13 at 10:56
3 Answers
0
as far as i recall, the surefire plugin is able to write reports to some directory (which will be used by e.g. jenkins to present results)

wrm
- 1,898
- 13
- 24
0
There is a maven plugin for Sonar. It is highly configurable, maybe solution to your problem.

Vinay Lodha
- 2,185
- 20
- 29
0
The failsafe plugin generates a xml file with the tests result. this can be used, for example by a jenkins plugin.

lpinto.eu
- 2,077
- 4
- 21
- 45