I'd like to print the HTML link in Eclipse console by using System.out.println
.
When I use System.out.println("<a href=\"http://www.google.com\">whatever</a>")
;
it prints the string and not a link that I can click on.
Edit
I'm creating JUnit HTML report using Ant. It contains all output created by System.out.println in the browser. I want to pass a link constructed from within a program.