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
What if I use Kingswaysoft components that allows talking to web services easily. Can I somehow mock those connection managers and use ssisUnit to unit test those packages?
The text was updated successfully, but these errors were encountered:
The way that Connection Managers are implemented in SSIS makes mocking them very difficult. Tasks and Components can access the connection manager's inner object (the custom class) so you have to mock that. How possible that is depends on how the class was implemented, and how other objects interact with it. If it uses interfaces, and all interaction is via the interfaces, then it's doable. Not all connection managers are implemented in that way, though.
Hello @johnwelch
What if I use Kingswaysoft components that allows talking to web services easily. Can I somehow mock those connection managers and use ssisUnit to unit test those packages?
The text was updated successfully, but these errors were encountered: