| 118 | } |
| 119 | |
| 120 | class DummyCopier : public MockNamedValueCopier |
| 121 | { |
| 122 | public: |
| 123 | void copy(void* dst, const void* src) |
| 124 | { |
| 125 | *(int*)dst = *(const int*)src; |
| 126 | } |
| 127 | }; |
| 128 | |
| 129 | TEST(MockPlugin, installCopierRecordsTheCopierButNotInstallsItYet) |
| 130 | { |
nothing calls this directly
no outgoing calls
no test coverage detected