- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有模拟界面
// Interface
class MyInterface
{
void get(const std::wstring& param) = 0;
}
// Mock interface
class MyInterfaceMock : public MyInterface
{
MOCK_METHOD1(get, void(const std::wstring& param));
}
示例测试方法:
...
EXPECT_CALL(myInterfaceMock, L"hello");
当我编译它时 (vs2015) 我收到消息
error C2664: 'testing::internal::MockSpec...: 无法将参数 1 从 'const wchar_t [6]' 转换为 'const testing::Matcher &'
随后是消息:原因:无法从 'const wchar_t [7]' 转换为 'const testing::Matcher'
当我使用 std::string 而不是 std::wstring 时,一切正常。有人知道为什么 std::wstring 无法匹配吗?
最佳答案
我猜你的意思是 EXPECT_CALL(myInterfaceMock, get(L"hello"));
你应该写EXPECT_CALL(myInterfaceMock, get(std::wstring(L"hello")));
一切都应该有效。
真正的问题是为什么匹配器来自 std::string
接受 const char*
作为值(value)。答案是——因为 google-mock 库有意支持这一点——参见 code :
template <>
class GTEST_API_ Matcher<std::string>
: public internal::MatcherBase<std::string> {
public:
Matcher() {}
explicit Matcher(const MatcherInterface<const std::string&>* impl)
: internal::MatcherBase<std::string>(impl) {}
explicit Matcher(const MatcherInterface<std::string>* impl)
: internal::MatcherBase<std::string>(impl) {}
template <typename M, typename = typename std::remove_reference<
M>::type::is_gtest_matcher>
Matcher(M&& m) // NOLINT
: internal::MatcherBase<std::string>(std::forward<M>(m)) {}
// Allows the user to write str instead of Eq(str) sometimes, where
// str is a string object.
Matcher(const std::string& s); // NOLINT
// Allows the user to write "foo" instead of Eq("foo") sometimes.
Matcher(const char* s); // NOLINT
};
Matcher<T>
没有等效的特化对于 std::wstring
.我建议你不要添加一个——因为它将来可能会改变——这是 gmock 实现细节。相反,您可能会要求 gmock 开发人员添加对 wstring
的支持与 string
类似...顺便说一句,我已经添加了one .
关于c++ - 在 googlemocks EXPECT_CALL 中匹配 std::wstring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40807081/
与其说是一个问题,不如说是一个知识共享。 根据 GoogleMock FAQ无法模拟可变参数函数,因为不知道该函数将提供多少参数。 这是真的,但在大多数情况下,人们知道从被测系统调用可变参数函数有多少
我如何模拟一个返回新对象的方法,该对象的构造函数将方法的参数之一作为其自身的参数? // ObjectA::ObjectA(MockedObject arg1, ObjectB* arg2); //
我有一个模拟这样的方法: MOCK_METHOD2(setValue, int(int notImportant, unsigned int value)); MOCK_METHOD2(getValu
我有一个模拟这样的方法: MOCK_METHOD2(setValue, int(int notImportant, unsigned int value)); MOCK_METHOD2(getValu
我想使用 GoogleMock 模拟如下服务: class Request { int req_id; int request; }; class Response { int
我们正在为现有代码库编写单元测试。我们使用 Google Test/Google Mock 进行测试,C++11 和 Eclipse CDT 与 gcc 编译器。 我们的一个类聚合了一个 Boost
我在运行 make 时不断收到这些错误: debug/main.o: In function `MockMQAdapter::MockMQAdapter()': /source/Tests/tests
#include "gtest/gtest.h" #include "gmock/gmock.h" class Turtle{ public: int foo(); }; i
我是 google mock 的初学者,我不确定如何使用它和概念。 如果我试图测试一个类中的方法,而这个类正在调用不同类中的一些其他方法。我是否需要从我的测试方法调用的不同类中模拟所有这些方法。这是一
看起来我在尝试模拟接口(interface)时无法使用虚拟继承。我需要使用虚拟继承,因为我的代码依赖于第三方库。第 3 方库使用虚拟继承通过父级从一个子级转换为另一个。我们需要能够根据 3rd 方库的
我有一个 Foo 类,它引用多个其他 IBar 类型的对象。该类有一个方法 fun,它需要至少在其中一个 IBar 上调用方法 frob。我想用模拟的 IBar 编写一个测试来验证这个要求。我正在使用
我开始使用 googletest 和 googlemock 库,但遇到无法解决的问题。我有这样的代码: class Painter { public: void DrawSomething()
我在工作中使用 googlemock。我们经常使用 EXPECT_THROW、EXPECT_NO_THROW 等... 我的问题是,当一个函数被包装在 EXPECT_NO_THROW 中但实际上抛出异
我想模拟一个返回复杂数据类型的方法 class aClass { public: virtual const QMap aMethod() const; } class MockaClass :
我尝试模拟表示 NVRAM 的现有类的行为和 API。 API 是: bool Init(Uint8* dataPointer); bool Store(); //Writes the data fr
是否可以从同一类的其他方法调用中模拟方法调用?我是 C++ 的新手(主要是 C 开发人员)并且是 googlemock 和 Google Test 的新手所以如果在其他地方回答了这个问题并且我不明白答
我创建了一个 googlemock 文本夹具类,在 SetUp 中我使用 new 创建了两个对象。在拆解中,如果我什么都不删除,我只会得到其中一个对象的内存泄漏错误。 class MissileLau
我有一个小类: struct Command { uint8_t cmdId; uint8_t len; uint8_t payload[MAX_PAYLOAD]; }; 我只
我已经使用 gtest 一段时间了,但最近想尝试一下 gmock。我正在尝试使用返回值的方法模拟类,但也通过引用在输出参数中返回一些东西。这是我的小代码。 #include #include "gm
我正在测试我的类是否使用正确的参数调用模拟类上的方法。我已经建立了一个基本的期望: // mListener is a mocked object // This expectation accept
我是一名优秀的程序员,十分优秀!