Reputation: 402
Although we can find TestNG javadocs, is there a way to download a srcs.jar and connect to Eclipse?
Upvotes: 2
Views: 764
Reputation: 6398
Steps:
testng-version-sources.jar
@Test
annotation.Test.class
source code. As src jar is not yet present, gives option Attach Source
. click on the button.External location
radio button.Ok
. you will get the source code for Test.class
(of course, for all other testng classes as well)Upvotes: 2