Sacado Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 
8 struct Base {
9  MOCK_METHOD(int, F, (), (onst));
10 };
11 
12 #else
13 
14 // Sanity check - this should compile.
15 
16 #endif
#define MOCK_METHOD(...)