views:

1219

answers:

2

Hi all,

I'm looking into writing an Eclipse plugin for FlexUnit and was wondering where I could get the sources for the JUnit Eclipse plugin. I checked the JUnit sources at sourceforge but couldn't spot any code that looked like the plugin code.

Any idea where this code is available?

+7  A: 

You can find it on Eclipse's repository:

http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.pde.junit/

Thilo
Awesome, thanks!
Christophe Herreman
A: 

Since you are in all likelihood using Eclipse, there's a far easier way to import it right into your workspace. The source is bundled with your eclipse distribution.

Just do
File -> Import -> Plug-ins and Fragments

Keep defaults ("Active target platform", "Select from all plug-ins" & "Projects with source folders"

Hit next, and select the JUnit plugin-packages and hit Finish, and they will be imported as Eclipse projects into your workspace.

Sven Johansson