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
In our project we are using a custom message resolver which we would also like to be able to use in the testing framework. Currently for each test a new TestEngineMessageResolver is created with no way to replace it with a custom implementation.
The text was updated successfully, but these errors were encountered:
A probable easy fix would be to add a private field for an IMessageResolver with getter and setter methods. During initialisation of the TemplateEngine in execute(final ITestable testable, final TestExecutionContext context) the field could be checked and if not null the custom IMessageResolver should be used instead of the standard TestEngineMessageResolver.
In our project we are using a custom message resolver which we would also like to be able to use in the testing framework. Currently for each test a new TestEngineMessageResolver is created with no way to replace it with a custom implementation.
The text was updated successfully, but these errors were encountered: