13
votes
9answers
5k views
Running Eclipse Junit Plugin tests with Junit 4.4 or newer — why aren’t tests detected?
I need to use JUnit 4.4 (or newer) in a set of eclipse plugin tests, but I've run into the following problem:
Tests are not detected when running with the junit 4.4 or 4.5 bundles from springsource
…
7
votes
2answers
531 views
Best practices for Eclipse Feature Integration Testing
I am developing an Eclipse feature consisting of several Eclipse plugins, using Equinox Declarative Services (DS) to wire the plugins together at runtime. I would like to add integration tests to …
6
votes
6answers
952 views
Building Eclipse plugins and features on the command line
I have a bunch of Eclipse plugins and features, which I would like to build as part of a nightly (headless) build. I've managed to do this using a complicated setup involving manually specifying paths …
5
votes
2answers
458 views
How do you communicate between eclipse declarative services and Views (ContentProviders)
Say you have an eclipse plugin with various views, these views should display data from some OSGi bundle that pushes data to the Views. Rather than have every view communicate with the OSGi bundle, I …
5
votes
3answers
330 views
Developing on Eclipse 3.4, running on Eclipse 3.3
I'm developing an Eclipse plug-in, based on a bunch of core Eclipse plug-ins like SWT, JDT, GEF and others.
I need my plug-in to be compatible with Eclipse 3.3, since many potential customers are …
4
votes
6answers
4k views
Automating unit tests (junit) for Eclipse Plugin development
I am developing Eclipse plugins, and I need to be able to automate the building and execution of the test suite for each plugin. (Using Junit)
Test are working within Eclipse, and I can break the …
3
votes
3answers
339 views
Suggestions for Automated Code coverage for an Eclipse RCP?
I would like to include some code coverage into our nightly build process. We're using CruiseControl, Ant, and Buckminster. Buckminster drives checkout from multiple repositories, and the PDE building …
3
votes
3answers
387 views
SWT Image concatenation or tiling / mosaic
I have an Eclipse RCP application that displays a lot (10k+) of small images next to each other, like a film strip. For each image, I am using a SWT Image object. This uses an excessive amount of …
2
votes
2answers
43 views
Update Site Creation Automation
Hi,
I've developed an eclipse plug in, and created a feature and an update site projects inside eclipse to publish it.
What i am looking for, is a way to automate the process of creating my update …
2
votes
1answer
141 views
How can I obtain the version number of a custom Eclipse feature at runtime?
I would like to display the version number of a custom Eclipse feature I am developing in the title bar of its perspective. Is there a way to obtain the version number from the runtime plugin and/or …
2
votes
2answers
146 views
How do I get notified whenever a new editor is opened in Eclipse?
I have a view which would like to be notified about all the currently opened editors. Where can I add a listener to achieve this?
I was expecting WorkbenchPage or EditorManager to have some …
2
votes
3answers
830 views
Eclipse editor plugin: “ERROR” when opening file outside project
I'm developing an editor plugin for eclipse. It works fine on files within eclipse projects, but when an external file is opened via the "File -> Open File" menu (which works file with, e.g. Java …
2
votes
1answer
157 views
Easy way to add a context action to Eclipse
I'm trying to add a very simple action to the context menu of Eclipse: clicking with right button over a folder object, this action should call an external tool (configured in the "External Tools") …
2
votes
5answers
2k views
How to run Eclipse launch configurations programmatically?
I'm finding it difficult to phrase this question well, as there are quite a few generic terms (run, configuration, launch, etc.). Here goes:
You can save run configurations in a .launch file. (in the …
2
votes
3answers
711 views
Programmatically showing a View from an Eclipse Plug-in
I have a plug-in to an Eclipse RCP application that has a view. After an event occurs in the RCP application, the plug-in is instantiated, its methods are called to populate the plug-in's model, but …
