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
{{ message }}
This repository was archived by the owner on Dec 8, 2021. It is now read-only.
TEST() arguments go from general to specific. The first argument is the name of the test suite, and the second argument is the test's name within the test suite. Both names must be valid C++ identifiers, and they should not contain any underscores (_)
GoogleTest says this:
https://github.com/google/googletest/blob/master/googletest/docs/primer.md#simple-tests
We have lots of underscores in the names of our
TESTs. We should remove them.