I want to test my OSGI app in Pax Exam, but i have some trouble with starting Application from one of my plug-ins.
I use Equinox and there is some equinox-specific class that extends org.eclipse.equinox.app.IApplication. This class can be then selected in Eclipse Application Launcher and is first class to be run (in my case it controls app lifecycle).
When I run Pax Exam test, all bundles are resolved, but my IApplication is not started.
How can I run this kind of application in Pax Exam?
Additionally how can I pass some app arguments? I see only some frameworkProperty (-F) and systemProperty (-D), but i need some regular app arguments.