diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-10-04 21:03:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-04 21:03:47 +0200 |
commit | ceee80c383d6f34af1a4e0fbb464f3f144cded68 (patch) | |
tree | acddac2058e907f3db9bafe616b38e156becb51d /googlemock/docs/FrequentlyAskedQuestions.md | |
parent | 98024ad2027387680fd4af72b70c14667850b09c (diff) | |
parent | 7b6561c56e353100aca8458d7bc49c4e0119bae8 (diff) | |
download | googletest-ceee80c383d6f34af1a4e0fbb464f3f144cded68.tar.gz googletest-ceee80c383d6f34af1a4e0fbb464f3f144cded68.tar.bz2 googletest-ceee80c383d6f34af1a4e0fbb464f3f144cded68.zip |
Merge branch 'master' into hethi/issue-360-remove-GTEST_HAS_PARAM_TESTS
Diffstat (limited to 'googlemock/docs/FrequentlyAskedQuestions.md')
-rw-r--r-- | googlemock/docs/FrequentlyAskedQuestions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/FrequentlyAskedQuestions.md b/googlemock/docs/FrequentlyAskedQuestions.md index 5eac83f4..ccaa3d7a 100644 --- a/googlemock/docs/FrequentlyAskedQuestions.md +++ b/googlemock/docs/FrequentlyAskedQuestions.md @@ -240,7 +240,7 @@ You cannot mock a variadic function (i.e. a function taking ellipsis The problem is that in general, there is _no way_ for a mock object to know how many arguments are passed to the variadic method, and what the arguments' types are. Only the _author of the base class_ knows -the protocol, and we cannot look into his head. +the protocol, and we cannot look into their head. Therefore, to mock such a function, the _user_ must teach the mock object how to figure out the number of arguments and their types. One |