Greetings,
By examining the webMethods Unit Test Framework Help documentation, I have discovered the following setting.
This seems to be quite a useful feature of WmTestSuite tests.
Is it possible to enable this setting with Java-based webMethods testing?
My JUnit tests would greatly benefit from having the factories defined on the client instead of the server,
because server side factories, when pushed to the server by mockService, seem to always initialize with the default constructor instead of the parametrized constructor I chose in my test.
This makes it so that they always do the default behavior when mocking a service, however I would like to customize the behavior given the specific parameters of the constructor (second constructor in the image below).