-
We have an old application build on RCP 3.x and its menu was created using ActionSet; We created a separate Maven project in Eclipse JEE to use Tycho-Surefire-plugin to run cucumber test scripts for regression testing. However, Tycho-surefire did not successfully load its menu items when launching the application while the application can run successfully on its own. I would like to confirm here if Tycho surefire does not support actionSets menus? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Tycho surefire just starts an Eclipse application and doesn't add much behavior content (apart of running the tests against the started application). The cause of your problem is not Tycho surefire, but maybe your test missing a dependency that make your actionSets working as expected. You can debug running tests with https://www.eclipse.org/tycho/sitedocs/tycho-surefire-plugin/test-mojo.html#debugPort |
Beta Was this translation helpful? Give feedback.
-
Tycho itself has no notion of actionSet, command and etc. It all depends on the target platform which you build/run tests your application with. Please share smallest possible reproducer project that fails in that way so it's possible to see the full log and experiment. |
Beta Was this translation helpful? Give feedback.
Tycho itself has no notion of actionSet, command and etc. It all depends on the target platform which you build/run tests your application with. Please share smallest possible reproducer project that fails in that way so it's possible to see the full log and experiment.
I would suggest moving to latest version of all dependencies as Eclipse Platform 3.x is not supported for ages but 3.x style RCPs are supposed to run just fine with latest Eclipse Platform 4.22 release.