Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.05 KB

readability-avoid-underscore-in-googletest-name.rst

File metadata and controls

34 lines (23 loc) · 1.05 KB

clang-tidy - google-readability-avoid-underscore-in-googletest-name

google-readability-avoid-underscore-in-googletest-name

Checks whether there are underscores in googletest test and test case names in test macros:

  • TEST
  • TEST_F
  • TEST_P
  • TYPED_TEST
  • TYPED_TEST_P

The FRIEND_TEST macro is not included.

For example:

would trigger the check. Underscores are not allowed in test names nor test case names.

The DISABLED_ prefix, which may be used to disable individual tests, is ignored when checking test names, but the rest of the rest of the test name is still checked.

This check does not propose any fixes.