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 am made an byte stream driver model implementation that uses an array of clients for sending data out of the deployment, and a multi-threaded TCP server to handle income data for receiving.
In testing its functionality, there is the tester instance of the component, and I have an instance of a TCP server and client. I mock the expected operations on the server and client instances, but I would now like to test to real instances of the components connecting to each other.
What would be the best approach to testing two (and then more) instances of the same component without yet making and running two( and more) deployments?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am made an byte stream driver model implementation that uses an array of clients for sending data out of the deployment, and a multi-threaded TCP server to handle income data for receiving.
In testing its functionality, there is the tester instance of the component, and I have an instance of a TCP server and client. I mock the expected operations on the server and client instances, but I would now like to test to real instances of the components connecting to each other.
What would be the best approach to testing two (and then more) instances of the same component without yet making and running two( and more) deployments?
Beta Was this translation helpful? Give feedback.
All reactions