enum class MockArgs

Description

This enum indicates whether the mock method in the matched ON_CALL or EXPECT_CALL macro has arguments. For example, `None` can be used to match `ON_CALL(mock, TwoParamMethod)` whereas `Some` can be used to match `ON_CALL(mock, TwoParamMethod(m1, m2))`.

Declared at: clang/include/clang/ASTMatchers/GtestMatchers.h:38

Enumerators

NameValueComment
None0
Some1