- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在使用 clang 编译器的 C++17 中,无论我是否这样做,我都会得到相同的构建错误:
EXPECT_TRUE(std::is_same_v<decltype(var1), decltype(var2)>);
或者这个:
EXPECT_TRUE(typename std::is_same_v<decltype(var1), decltype(var2)>);,
或者这个:
EXPECT_TRUE(typename std::is_same_v<typename decltype(var1), typename decltype(var2)>);
构建命令:
bazel test //my_target_dir:my_target
构建错误:
error: too many arguments provided to function-like macro invocation
decltype(var2)>);
^
gtest/gtest.h:1980:9: note: macro 'EXPECT_TRUE' defined here
#define EXPECT_TRUE(condition) \
^
myfile.cpp:125:5: error: use of undeclared identifier 'EXPECT_TRUE'
EXPECT_TRUE(std::is_same_v<
^
请注意 EXPECT_TRUE()
的 Googletest 定义在这里:https://github.com/google/googletest/blob/master/googletest/include/gtest/gtest.h#L1980 .
我正在做的事情有什么问题,我怎样才能编译它?
最佳答案
这不起作用,因为处理宏的 C++ 预处理器是在模板存在之前编写的,并且将逗号视为分隔宏的两个单独参数。它认为我已经调用了 EXPECT_TRUE()
宏 anything<foo
作为第一个参数,bar>
作为第二个参数:
// This does NOT work, because the preprocessor sees this 1 template
// argument to the macro as two separate arguments separated by the
// comma
EXPECT_TRUE(anything<foo, bar>);
这些选项确实有效:
// Option 1: move the template outside of the macro call
bool isSameType = std::is_same_v<decltype(var1), decltype(var2)>;
EXPECT_TRUE(isSameType);
// Option 2: for this particular case I can instead use the
// `static_assert()` function in place of the `EXPECT_TRUE()` macro
static_assert(std::is_same_v<decltype(var1), decltype(var2)>);
// Option 3: use double parenthesis to force the macro to treat
// the parameter containing comma-separated template parameters
// as a **single argument** to the macro:
EXPECT_TRUE((std::is_same_v<decltype(var1), decltype(var2)>));
在与一些 friend 聊天后,其中一位 Drew Gross , 解释如下:
Due to the C++ preprocessor model, commas within a template instantiation are interpreted as separating arguments of the macro, not arguments of the template. This is one of the many reasons that using macros is heavily discouraged in modern C++. So when you write:
SOME_MACRO(some_template<a, b>());
it's interpreted as passing 2 arguments to
SOME_MACRO
, the first beingsome_template<a
, and the second beingb>()
. SinceEXPECT_TRUE
only accepts a single argument, this fails to compile.In this particular case I'd recommend using
static_assert
instead ofEXPECT_TRUE
. If the thing you were testing wasn't a compile time constant, you would have to assign to a local variable first, e.g.bool localVar = some_template<a, b>();
EXPECT_TRUE(localVar);
他是对的。由于 C 和 C++ 宏预处理器是在 C++ 存在之前编写的,它不识别 C++ <
和 >
模板范围符号(它认为它们分别只是“小于”和“大于”符号),所以在这个语句( EXPECT_TRUE(std::is_same_v<decltype(var1), decltype(var2)>);
)中,它看到逗号并解析 std::is_same_v<decltype(var1)
作为 gtest EXPECT_TRUE()
的第一个参数宏,和 decltype(var2)>
作为宏的第二个参数。
因此,这里是解决方案:
bool isSameType = std::is_same_v<decltype(var1), decltype(var2)>;
EXPECT_TRUE(isSameType);
然而,正如德鲁所说,更好的解决方案是只使用 static_assert()
在这种情况下而不是 gtest 的 EXPECT_TRUE()
,因为这个测试可以在编译时而不是运行时完成:
(更好的解决方案):
static_assert(std::is_same_v<decltype(var1), decltype(var2)>);
注意:static_assert()
不需要消息在 C++17 中。 See here.
我做了一些额外的研究和实验,还发现额外的括号也能解决这个问题。使用额外的括号会强制预处理器将整个输入参数识别为宏的第一个参数,因为预处理器尊重括号但不尊重模板<>
符号,因为它不支持模板。
因此,这也适用:
EXPECT_TRUE((std::is_same_v<decltype(var1), decltype(var2)>));
如有疑问,请将其括起来。如果确实需要,请加上括号。 :)
所以,现在我们有 3 个可行的解决方案来解决这个问题。我可能会选择 static_assert()
选项作为我的主要解决方案,如果我需要在运行时测试一些模板输入,则上面的额外括号选项作为我的解决方案。
一旦我知道问题的本质是什么(宏预处理器看到逗号但不识别 C++ 模板 <
和 >
范围运算符),我就可以进行一些谷歌搜索并找到以下答案来查看也是:
关键字:注意模板参数输入的宏; C/C++ 宏预处理器的逗号参数定界符,宏参数周围的宏需要 C++ 额外括号
关于c++ - Google 测试 (gtest) `EXPECT_TRUE()` 宏不会使用 `std::is_same<>` 模板作为输入进行编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65300353/
我在尝试使用 cmake 构建项目时遇到错误。 我在我的电脑上手动下载并安装了 gtest(即/usr/include 中提供了 gtest 头文件)和/usr/lib 中的 gtest、gtest_
我在构建我的项目时遇到以下错误 C:\gtest\gtest-1.6.0\include\gtest/gtest-printers.h(327) : error C2220: warning trea
你好, 我目前正在研究 CMake,以便在工作中使用 ExternalProject_add。因为我想测试 googletest,所以我尝试同时测试两者。我在编译单元测试代码时遇到问题。 所以我就按照
我一直在为这个问题苦苦挣扎一段时间:我在 Windows 10 下使用 CMake 和 GTest,但我得到一个 (Link target) -> LINK : fatal error LNK1104
如果内存不足,C++ 中的 new 关键字将抛出异常,但下面的代码会在 new 失败时尝试返回“NO_MEMORY”。这很糟糕,因为它会引发 std::bad_alloc 异常。 我正在写一个单元测试
我正在尝试运行一些Google测试,并且在每个测试装置中都有很多代码需要重复,因此我想使代码尽可能简短,我想使用的子类的SetUp方法Testing::test父类,但是TEST_F固定装置无法识别S
我正在尝试使用 gtest 类型参数化来确保我的类的基本功能。但是我被困在测试设置中。以下是示例: 我有两个名为 CatTest 和 DogTest 的类,以及一个名为 AnimalTest 的基类,
我想应用参数化测试并具有以下夹具: class MyTest: public ::testing::TestWithParam {...}; 我想设置两个参数化测试用例,其中一个小参数失败,但大参数成
如果我使用 g(oogle)Test,这些像 FRIEND_TEST(Test, Proc) 这样的小谷歌宏在我的代码中随处可见。是否有自动机制将它们从构建中排除,或者我真的必须用 #ifdefs 包
我有一个项目,我添加了一个 gtest 项目,然后将原始项目转换为 .lib 项目,并从第三个新项目调用其 main() 函数。这样,我就可以用项目 .exe 构建测试 .exe。除了,它不起作用。
注意:我知道这个问题以不同的方式被问到,但我无法根据我的限制解决它: 我正在使用谷歌测试版 1.7 使用平台工具集 V100 在 Visual Studio 2010 中编译 我正在为我创建的库编写
我的项目中有一个目录树: /project /build /src main.cpp student.cpp /include
在我们所知的 gtets 中,当控件找到 TEST 或 TEST_F 函数时,它会注册 测试用例 进入 gtest。但是按照我的要求,gtest注册完所有的测试用例之后我需要搜索 testcasena
我有一大套单元测试和一些集成测试是用谷歌测试框架或 gtest 实现的。 由于没有标记,我使用禁用约定将测试分成组或在它们前面加上 GROUPA_、GROUPB_ 等前缀。 这很好用。我可以过滤不同的
我想混合参数化测试和类型化测试。这是我的尝试: struct X {}; struct Y {}; template struct MyTestFixture: public ::testing::
我已阅读 this official document ,了解如何进行二进制比较和字符串比较。 ASSERT_EQ 和 ASSERT_STREQ 在数组比较情况下无法工作。 例如 li@li:~/po
我正在测试我的功能是否正确运行 bool Core::IsMeta(void) { return mProc->GetCode(mPC)->Meta; } 使用说明 EXPECT_EQ(true,
我想用 gtest 测试一个模板类。我在 Google Test manual 中阅读了有关 TYPED_TEST 的信息并查看了official example他们引用了,但我仍然无法全神贯注地获取
这是我的: /* Can't change 'base' struct. */ struct base { public: template void printVal() {
我想要等于 2 个对象,正好是卡片(使用 gtest 进行单元测试)。这是我的代码: #include "stdafx.h" #include #include class Card { p
我是一名优秀的程序员,十分优秀!