The Science of Unit Tests
https://cppcon.org/ https://github.com/CppCon/CppCon2020/blob/main/Presentations/scientific_unit_testing/scientific_unit_testing__dave_steffen__cppcon_2020.pdf
Unit testing has emerged as one of the foundations of modern software development. There are plenty of good talks on how to write tests, full of good advice, guidelines, and procedures: “Test using only the public interface”, “Use Test-Driven Development”, “Write Behavior-Driven Tests”.
But what are the …