vote up 1 vote down star

I want to add a view to a perspective without having access to the source code of the perspective. Is this possible?

Is there a good tutorial for plug-in development using TDD?

[edit] I think I have a good starting point with TDDing in plugin development Automating unit tests (junit) for Eclipse Plugin development

[edit 02/17/09] I was able to download the source for the plug-in. I'm just probably going to fork it.

flag

4 Answers

vote up 1 vote down

You might want to take a look at the org.eclipse.ui.perspectiveExtensions Extension Point.

And here is a nice article concerning Perspectives: Using Perspectives in the Eclipse UI

Sorry, can't help you with the TDD part of your question.

link|flag
vote up 1 vote down

Testing GUIs is a PAIN! And the pain grows exponentially with the complexity of the gui design. Your best bet is to keep the business logic separate from the GUI as much as possible with the MVC pattern and when testing the gui, hook the GUI up to a "mock" application.

See Object Mentor's paper, the Humble Dialog Box

link|flag
@OTilser Thanks. I'm quite familar with humble view. I myself prefer a presenter first implementation. gutzofter – Gutzofter Feb 18 at 1:12
You're welcome. We started down the path of Humble dialog on a recent project and started getting lazy. We ended up doing a GUI record/playback for a lot of our tests. Needless to say, it really sucks. As long as you don't go down that route, you'll save yourself some gray hairs and twitching eyes – OTisler Feb 18 at 14:23
The problem I see with a humble view is that the view holds a reference to the presenter/controller – Gutzofter Feb 18 at 16:29
vote up 0 vote down

If your goal is to simply add the view to a perspective in your own Eclipse instance, you can just open it when being in that perspective, and choose Window -> Save Perspective As...

For unit testing plug-ins, you can basically test them using normal JUnit tests, which you run as JUnit plug-in tests instead of normal JUnit tests in Eclipse. For GUI testing you could check out SWTBot.

link|flag
vote up 0 vote down check

I'm closing the question. I can easily tdd the view I need now that I have the source code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.