博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GTEST-ASSERT出错
阅读量:6831 次
发布时间:2019-06-26

本文共 264 字,大约阅读时间需要 1 分钟。

ASSERT_TRUE(1==1);

ASSERT_EQ(1,1);

会给出以下错误:

"cfunctest_normal.cpp", line 121.9: 1540-0258 (S) A return value of type "int" cannot be initialized with an expression of type "void".

EXPECT_EQ();

不会出现这样的问题

不知道为什么?

转载于:https://www.cnblogs.com/orchid-sky/p/3528314.html

你可能感兴趣的文章