使用 GoogleTest for C++ 调用函数名称是否有任何限制?

发布于 2024-11-09 13:41:09 字数 57 浏览 0 评论 0原文

当我使用 Google Test 调用函数时,是否有任何限制,例如不能使用下划线或任何其他特殊字符?

When I call a function using Google Test then is there any restriction like I can not use underscore or any other special character?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恰似旧人归 2024-11-16 13:41:09

不,您可以调用任何您想要的函数。 Google Test 不会检测您调用的函数。

您不应在测试名称中使用任何前导或尾随下划线,因为这些名称可能会被某些 Google 测试宏与其他名称组合在一起。

No. You can call whatever functions you want. Google Test does not instrument the functions you call.

You shouldn't use any leading or trailing underscores in your test names since those are liable to be combined with other names by some of Google Test's macros.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文