OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NiceMock
(Results
1 - 2
of
2
) sorted by null
/external/google-breakpad/src/testing/include/gmock/
gmock-generated-nice-strict.h
34
// Implements class templates
NiceMock
and StrictMock.
37
//
NiceMock
<MockFoo> is a subclass of MockFoo that allows
42
//
NiceMock
and StrictMock "inherits" the constructors of their
44
// write
NiceMock
<MockFoo>(5, "a") to construct a nice mock where
48
// A known limitation is that
NiceMock
<MockFoo> and
53
// particular, nesting
NiceMock
and StrictMock is NOT supported.
68
class
NiceMock
: public MockClass {
72
NiceMock
() {
80
explicit
NiceMock
(const A1& a1) : MockClass(a1) {
85
NiceMock
(const A1& a1, const A2& a2) : MockClass(a1, a2)
[
all
...]
/external/gmock/include/gmock/
gmock-generated-nice-strict.h
36
// Implements class templates
NiceMock
, NaggyMock, and StrictMock.
39
//
NiceMock
<MockFoo> is a subclass of MockFoo that allows
51
//
NiceMock
<MockFoo>.
53
//
NiceMock
, NaggyMock, and StrictMock "inherit" the constructors of
55
// you can write
NiceMock
<MockFoo>(5, "a") to construct a nice mock
59
// A known limitation is that
NiceMock
<MockFoo>, NaggyMock<MockFoo>,
64
// In particular, nesting
NiceMock
, NaggyMock, and StrictMock is NOT
80
class
NiceMock
: public MockClass {
84
NiceMock
() {
92
explicit
NiceMock
(const A1& a1) : MockClass(a1)
[
all
...]
Completed in 533 milliseconds