mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Taking a function pointer on a base member protected function is actually invalid.
This could work with a pointer on the derived class member function, that is &derived::method instead of &base::method however there is no way to pass the derived class from MOCK_BASE_CLASS to the mock::detail::base helper if template classes are to be supported.
Anyway the now documented workaround is simple enough and the same as for private member functions.
As a side note the changes from
|
||
|---|---|---|
| .. | ||
| detail | ||
| catch.hpp | ||
| cleanup.hpp | ||
| config.hpp | ||
| constraint.hpp | ||
| constraints.hpp | ||
| error.hpp | ||
| exception.hpp | ||
| format.hpp | ||
| log.hpp | ||
| matcher.hpp | ||
| mock.hpp | ||
| object.hpp | ||
| reset.hpp | ||
| sequence.hpp | ||
| stream.hpp | ||
| verify.hpp | ||