You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was working creating a plugin, which has a TestSuite Integration view. I am saving the settings from the TestSuite Integration view into an Integration object of TestSuite.
My ask is that post execution of the suite, I need to get the data from the Suite integration object, and so I need the TestSuiteEntity object in the EventListenerInitializer implementation.
I am able to get the Suite execution context as below:
However, I am not able to get a handle of the TestSuiteEntity, since the only controllers available are:
ApplicationManager.getInstance().getControllerManager().getController(TestSuiteCollectionController.class);
If a suite is not added to a collection, then the suite doesn't appear in the collection.
Any help will be appreciated.
The text was updated successfully, but these errors were encountered:
Hello,
I was working creating a plugin, which has a TestSuite Integration view. I am saving the settings from the TestSuite Integration view into an Integration object of TestSuite.
My ask is that post execution of the suite, I need to get the data from the Suite integration object, and so I need the TestSuiteEntity object in the EventListenerInitializer implementation.
I am able to get the Suite execution context as below:
ExecutionEvent eventObject = (ExecutionEvent) event.getProperty("org.eclipse.e4.data"); ProjectEntity project = ApplicationManager.getInstance().getProjectManager().getCurrentProject(); TestSuiteExecutionContext testSuiteContext = (TestSuiteExecutionContext) eventObject.getExecutionContext();
However, I am not able to get a handle of the TestSuiteEntity, since the only controllers available are:
ApplicationManager.getInstance().getControllerManager().getController(TestSuiteCollectionController.class);
If a suite is not added to a collection, then the suite doesn't appear in the collection.
Any help will be appreciated.
The text was updated successfully, but these errors were encountered: