Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

eclipse junit differencies' window

Before , when I was working with JUnit under eclipse I used to double click on somewhere in JUnit view and then a comparison window popped up. Which showed exact differences(like version controle systems do, e.g git diff tools) between actual and expected.

And now I am not able find it again. Where is it? Or Is it removed from new versions?

like image 408
lazyCoding Avatar asked Apr 16 '14 04:04

lazyCoding


1 Answers

You double-click on the failure in the JUnit view. Note that the diff is only available if the test fails with a ComparisonFailure

like image 149
NamshubWriter Avatar answered Oct 13 '22 11:10

NamshubWriter