there is a difference between EclipseAppLauncher.runApplication() and
swt's UITestApplication.start() regarding main arguments :
EclipseAppLauncher.runApplication() removes eclipse specific arguments :
this behavior allows easy arguments parsing.
but UITestApplication.start() keeps SWTBot specific arguments like
"-port" or "-testLoaderClass" in the main (start) method.
This behavior could lead to unknown arguments parse error (like apache
CLI does).
Shouldn't UITestApplication remove SWTbot's arguments before calling
start() method ?