Introduction to asserts and expects
Basic checks In test we should be able to check if code is doing the right thing. To do that Google Test give us tools for having some checks which may end up with success, nonfatal failure, or fatal failure. In next sections you will learn how to write different type of checks for your test. …