jantox
jantox

Reputation: 2185

JUnit plugin integration

Is there a way to integrate in an Eclipse RCP project the JUnit Window? I am planning on creating a test script runner and I want JUnit window to be in my application.

Upvotes: 0

Views: 144

Answers (1)

Bananeweizen
Bananeweizen

Reputation: 22070

Sure, but not as you expect it. The JUnit view is contributed by org.eclipse.jdt.junit (which you can see by hitting Shift-Alt-F1 with that view being active). So you need to include that as a dependency in your plugin (or in your product definition, if you have one).

The bad news: I have not checked the dependencies for that plugin, and those dependencies will probably take most of the JDT into your application also, which is probably not desired.

Upvotes: 1

Related Questions