File: gmock-function-mocker_nc.cc

package info (click to toggle)
mrpt 1%3A2.1.7-2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 93,572 kB
  • sloc: cpp: 568,813; ansic: 164,240; python: 11,388; xml: 3,860; sh: 2,101; makefile: 733
file content (16 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (30)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "gmock/gmock.h"

#include <memory>
#include <string>

#if defined(TEST_MOCK_METHOD_INVALID_CONST_SPEC)

struct Base {
  MOCK_METHOD(int, F, (), (onst));
};

#else

// Sanity check - this should compile.

#endif