作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下枚举:
namespace Country {
enum {
ITALY = 1,
SPAIN = 2
};
}
以及以下 UnitTest++ 测试:
TEST(something) {
CHECK_EQUAL(Country::SPAIN, object.getCountry(1)); // getCountry returns int
}
这行不通。我以为 Country::SPAIN
会自动转换为 int 2,但我得到了这个错误:
error: no matching function for call to ‘CheckEqual(UnitTest::TestResults&, Country::<anonymous enum>, int, UnitTest::TestDetails)’
最佳答案
自己将枚举转换为 int
:
TEST(something) {
CHECK_EQUAL(static_cast<int>(Country::SPAIN), object.getCountry(1));
}
关于c++ - 如何将 C++ 枚举与 UnitTest++ 检查一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5480190/
我是一名优秀的程序员,十分优秀!