Sacado Package Browser (Single Doxygen Collection) Version of the Day
Loading...
Searching...
No Matches
gmock-function-mocker_nc.cc
Go to the documentation of this file.
1#include "gmock/gmock.h"
2
3#include <memory>
4#include <string>
5
6#if defined(TEST_MOCK_METHOD_INVALID_CONST_SPEC)
7
8struct Base {
9 MOCK_METHOD(int, F, (), (onst));
10};
11
12#else
13
14// Sanity check - this should compile.
15
16#endif
#define MOCK_METHOD(...)