4

我正在测试我的类是否使用正确的参数调用模拟类的方法。我已经建立了一个基本的期望:

// mListener is a mocked object
// This expectation accepts any argument
EXPECT_CALL(this->mListener, OnChanged(_))
    .Times(1);

这很好,但我也想验证这个论点。它是一个只有使用输出参数的访问器的对象:

// aValue is an output parameter
HRESULT get_Value(int* aValue);

如何定义一个匹配器来检查get_Value放入的值aValue

4

1 回答 1

4

您可以尝试以下方法:

MATCHER_P(CheckValue,
          expected_value,
          std::string("get_Value ")
              + (negation ? "yields " : "doesn't yield ")
              + PrintToString(expected_value)
              + " as expected.") {
  int result;
  arg.get_Value(&result);
  return expected_value == result;
}

可以通过以下方式检查aValue == 7

EXPECT_CALL(this->mListener, OnChanged(CheckValue(7)))
    .Times(1);
于 2012-02-22T22:44:54.667 回答