xref: /freebsd/contrib/googletest/googlemock/include/gmock/gmock.h (revision b89a7cc2ed6e4398d5be502f5bb5885d1ec6ff0f)
1*b89a7cc2SEnji Cooper // Copyright 2007, Google Inc.
2*b89a7cc2SEnji Cooper // All rights reserved.
3*b89a7cc2SEnji Cooper //
4*b89a7cc2SEnji Cooper // Redistribution and use in source and binary forms, with or without
5*b89a7cc2SEnji Cooper // modification, are permitted provided that the following conditions are
6*b89a7cc2SEnji Cooper // met:
7*b89a7cc2SEnji Cooper //
8*b89a7cc2SEnji Cooper //     * Redistributions of source code must retain the above copyright
9*b89a7cc2SEnji Cooper // notice, this list of conditions and the following disclaimer.
10*b89a7cc2SEnji Cooper //     * Redistributions in binary form must reproduce the above
11*b89a7cc2SEnji Cooper // copyright notice, this list of conditions and the following disclaimer
12*b89a7cc2SEnji Cooper // in the documentation and/or other materials provided with the
13*b89a7cc2SEnji Cooper // distribution.
14*b89a7cc2SEnji Cooper //     * Neither the name of Google Inc. nor the names of its
15*b89a7cc2SEnji Cooper // contributors may be used to endorse or promote products derived from
16*b89a7cc2SEnji Cooper // this software without specific prior written permission.
17*b89a7cc2SEnji Cooper //
18*b89a7cc2SEnji Cooper // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19*b89a7cc2SEnji Cooper // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20*b89a7cc2SEnji Cooper // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21*b89a7cc2SEnji Cooper // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22*b89a7cc2SEnji Cooper // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23*b89a7cc2SEnji Cooper // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24*b89a7cc2SEnji Cooper // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25*b89a7cc2SEnji Cooper // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26*b89a7cc2SEnji Cooper // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*b89a7cc2SEnji Cooper // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28*b89a7cc2SEnji Cooper // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*b89a7cc2SEnji Cooper 
30*b89a7cc2SEnji Cooper 
31*b89a7cc2SEnji Cooper // Google Mock - a framework for writing C++ mock classes.
32*b89a7cc2SEnji Cooper //
33*b89a7cc2SEnji Cooper // This is the main header file a user should include.
34*b89a7cc2SEnji Cooper 
35*b89a7cc2SEnji Cooper // GOOGLETEST_CM0002 DO NOT DELETE
36*b89a7cc2SEnji Cooper 
37*b89a7cc2SEnji Cooper #ifndef GMOCK_INCLUDE_GMOCK_GMOCK_H_
38*b89a7cc2SEnji Cooper #define GMOCK_INCLUDE_GMOCK_GMOCK_H_
39*b89a7cc2SEnji Cooper 
40*b89a7cc2SEnji Cooper // This file implements the following syntax:
41*b89a7cc2SEnji Cooper //
42*b89a7cc2SEnji Cooper //   ON_CALL(mock_object.Method(...))
43*b89a7cc2SEnji Cooper //     .With(...) ?
44*b89a7cc2SEnji Cooper //     .WillByDefault(...);
45*b89a7cc2SEnji Cooper //
46*b89a7cc2SEnji Cooper // where With() is optional and WillByDefault() must appear exactly
47*b89a7cc2SEnji Cooper // once.
48*b89a7cc2SEnji Cooper //
49*b89a7cc2SEnji Cooper //   EXPECT_CALL(mock_object.Method(...))
50*b89a7cc2SEnji Cooper //     .With(...) ?
51*b89a7cc2SEnji Cooper //     .Times(...) ?
52*b89a7cc2SEnji Cooper //     .InSequence(...) *
53*b89a7cc2SEnji Cooper //     .WillOnce(...) *
54*b89a7cc2SEnji Cooper //     .WillRepeatedly(...) ?
55*b89a7cc2SEnji Cooper //     .RetiresOnSaturation() ? ;
56*b89a7cc2SEnji Cooper //
57*b89a7cc2SEnji Cooper // where all clauses are optional and WillOnce() can be repeated.
58*b89a7cc2SEnji Cooper 
59*b89a7cc2SEnji Cooper #include "gmock/gmock-actions.h"
60*b89a7cc2SEnji Cooper #include "gmock/gmock-cardinalities.h"
61*b89a7cc2SEnji Cooper #include "gmock/gmock-generated-actions.h"
62*b89a7cc2SEnji Cooper #include "gmock/gmock-generated-function-mockers.h"
63*b89a7cc2SEnji Cooper #include "gmock/gmock-generated-matchers.h"
64*b89a7cc2SEnji Cooper #include "gmock/gmock-generated-nice-strict.h"
65*b89a7cc2SEnji Cooper #include "gmock/gmock-matchers.h"
66*b89a7cc2SEnji Cooper #include "gmock/gmock-more-actions.h"
67*b89a7cc2SEnji Cooper #include "gmock/gmock-more-matchers.h"
68*b89a7cc2SEnji Cooper #include "gmock/internal/gmock-internal-utils.h"
69*b89a7cc2SEnji Cooper 
70*b89a7cc2SEnji Cooper namespace testing {
71*b89a7cc2SEnji Cooper 
72*b89a7cc2SEnji Cooper // Declares Google Mock flags that we want a user to use programmatically.
73*b89a7cc2SEnji Cooper GMOCK_DECLARE_bool_(catch_leaked_mocks);
74*b89a7cc2SEnji Cooper GMOCK_DECLARE_string_(verbose);
75*b89a7cc2SEnji Cooper GMOCK_DECLARE_int32_(default_mock_behavior);
76*b89a7cc2SEnji Cooper 
77*b89a7cc2SEnji Cooper // Initializes Google Mock.  This must be called before running the
78*b89a7cc2SEnji Cooper // tests.  In particular, it parses the command line for the flags
79*b89a7cc2SEnji Cooper // that Google Mock recognizes.  Whenever a Google Mock flag is seen,
80*b89a7cc2SEnji Cooper // it is removed from argv, and *argc is decremented.
81*b89a7cc2SEnji Cooper //
82*b89a7cc2SEnji Cooper // No value is returned.  Instead, the Google Mock flag variables are
83*b89a7cc2SEnji Cooper // updated.
84*b89a7cc2SEnji Cooper //
85*b89a7cc2SEnji Cooper // Since Google Test is needed for Google Mock to work, this function
86*b89a7cc2SEnji Cooper // also initializes Google Test and parses its flags, if that hasn't
87*b89a7cc2SEnji Cooper // been done.
88*b89a7cc2SEnji Cooper GTEST_API_ void InitGoogleMock(int* argc, char** argv);
89*b89a7cc2SEnji Cooper 
90*b89a7cc2SEnji Cooper // This overloaded version can be used in Windows programs compiled in
91*b89a7cc2SEnji Cooper // UNICODE mode.
92*b89a7cc2SEnji Cooper GTEST_API_ void InitGoogleMock(int* argc, wchar_t** argv);
93*b89a7cc2SEnji Cooper 
94*b89a7cc2SEnji Cooper }  // namespace testing
95*b89a7cc2SEnji Cooper 
96*b89a7cc2SEnji Cooper #endif  // GMOCK_INCLUDE_GMOCK_GMOCK_H_
97