Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate JUnit Test report

Tags:

junit

eclipse

Is it possible to have JUnit Test report data in html in eclipse(kepler), which show many test case and how many passed, what is the intent of test cases etc.

like image 805
Manas Pratim Chamuah Avatar asked Nov 01 '22 19:11

Manas Pratim Chamuah


1 Answers

Yes it can be done using Ant eclipse build file read more here the Ant build file generated from eclipse it self.

More References :

1)http://www.java2s.com/Code/Java/Ant/Junitreport.htm

2)http://earlwillis.wordpress.com/2012/01/31/getting-started-with-junit-reports/

3)http://ant.apache.org/manual/Tasks/junitreport.html

Hope that helps

like image 111
Malatesh Avatar answered Dec 02 '22 01:12

Malatesh