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
At the moment, we don't have any API that can also capture the output streams (stdout/stderr), so even to test our own xtest API we have to use the redirector API that we have inside of our tests which is not completely efficient. So, what I have decided to do is to implement a CapturedStream API similar to the one that googletest uses.
At the moment, we don't have any API that can also capture the output streams (stdout/stderr), so even to test our own
xtest
API we have to use theredirector
API that we have inside of our tests which is not completely efficient. So, what I have decided to do is to implement aCapturedStream
API similar to the one that googletest uses.Problems with
RedirectorContext
:What
googletest
have for us:Simplicity; (following example is taken from the
cjson
library).The text was updated successfully, but these errors were encountered: