James Grenning
James Grenning
Thanks for your post. Do you see a significant lag in the virtual camera output? I am having about a one second lag with the V4l2sink when I use it...
Everything is hard-wired. USB camera. Wired LAN. What is ADB?
I'm using obs-v4l2sink on Ubuntu with a Logitech c922. I thought ADB was an android thing.
Hi Alex Thanks for the feedback, can you suggest a specific change, or submit a pull request? I'm glad you liked the book and have put my repo to good...
Are you suggesting adding `cd ~/github/tddec-code` Or in the context of the README.md, adding `cd tddec-code` after `git clone ...`? ``` MYPROJECTS=myprojects mkdir -p $MYPROJECTS cd $MYPROJECTS git clone --recurse-submodules...
Hi Marco sorry for the late reply. Turn on coverage with this ``` make clean make CPPUTEST_USE_GCOV=Y gcov ``` I'm not sure about html.
thanks for the fix
Hi I don't really use Windows. Someone contributed the Docker for Windows instructions. Are you using the CppUTest that is in the repo as a submodule? Ideas * You might...
CppUTest is note designed to be used with different threads helping to meet expectations. For unit testing with CppUTest you should use single threads. This probably means organizing your code...
I have found legacy code situations where header stubbing is the right step forward. I don't love it, but I love not being able to test something even less. I...