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