diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-10-20 17:25:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 17:25:41 -0400 |
commit | c208d8df23d6bd4fbe153a34d092aff0fddbc6a5 (patch) | |
tree | 820e437ce56c2a4c0d39b783176bf1db1605a283 /googlemock/docs/FrequentlyAskedQuestions.md | |
parent | 3eaba9f07c5f81a8b83432e4ae389ee42337393f (diff) | |
parent | 69e48e92de43960a316a826293510b7b3deb9eca (diff) | |
download | googletest-c208d8df23d6bd4fbe153a34d092aff0fddbc6a5.tar.gz googletest-c208d8df23d6bd4fbe153a34d092aff0fddbc6a5.tar.bz2 googletest-c208d8df23d6bd4fbe153a34d092aff0fddbc6a5.zip |
Merge branch 'master' into master
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 |