Does anyone know how to programmatically start Eclipse IApplication?
This is a command line application, and I want to write unit tests for it.
It should work like this:
org.eclipse.equinox.app.IApplication app = new myApp(); try { app.start(???); } catch (Exception e) { e.printStackTrace(); }
The start method requires an IApplicationContext.
Where can i get this?
Many thanks for the help
source share