Hi
I am using google unit test framework (googletest-master\googletest) for executing unit test for my C++ code.
My C++ code internally communicate with another process using socket programming.
Can I use googletest to do unit testing for a code which internally calls socket api's and expects some output asynchronously?
If yes how to achieve this?
Thanks
Amit