English 中文(简体)
JUnit Result Aggregation
原标题:

I m familiar with aggregating junit test results within a single build, but are there any tools that let you aggregate results across different builds?

I d like to discover which tests failed most frequently, though not necessarily continuously.

问题回答

I d go for a simple shell script (grep+sed / awk), gathering output from distinct text/xml files. Alternatively, you could define a custom formatter which appends failure logs to a single file.

Maven has aggregation support, but that requires switching the whole build to maven.





相关问题
A report writer for non-programmers?

we are wanting for users to be able to write their own reports in our application. It is a web application. We don t care if they must download an application in order to create reports, but we need ...

user report generation by various attributes

User table contains the following attributes (dateOfBirth, race, gender, ...). We would like to generate a report in the following format. Year Race All Male Female 2000 Asian 2000 1000 1000 ...

easy way to write report on data

looking for a good easy way to generate reports on data my application holds. rather than building it painfully by writing it all out and formatting it with /n s etc is there an easier method? It ...

Is there a .Net Reporting tool that uses Office templates?

On the application I am currently working on, we need a way for users to generate reports in Microsoft Word or Excel format (export and print). One of the requirement is that the users would create ...

Open Source & Free Adhoc / End User Reporting Tool [closed]

I am looking for an Open Source & Free Browser based Adhoc / End User Reporting Tool preferably based on Java (any other technologies are also welcome). I have researched on JasperServer Pro, ...

JUnit Result Aggregation

I m familiar with aggregating junit test results within a single build, but are there any tools that let you aggregate results across different builds? I d like to discover which tests failed most ...

热门标签