blob: f941f1583687dcb5f910ec452fdf1e7e71647368 [file] [log] [blame] [view]
Billy Donahue23bd6d82015-08-30 12:36:37 -04001## Google Mock ##
zhanyong.wand19f5862010-04-14 16:26:57 +00002
Billy Donahue23bd6d82015-08-30 12:36:37 -04003The Google C++ mocking framework.
shiqiane35fdd92008-12-10 05:08:54 +00004
Billy Donahue37b5c292015-08-26 18:28:20 -04005### Overview ###
zhanyong.wand19f5862010-04-14 16:26:57 +00006
Billy Donahue23bd6d82015-08-30 12:36:37 -04007Google's framework for writing and using C++ mock classes.
8It can help you derive better designs of your system and write better tests.
9
10It is inspired by:
11
12 * [jMock](http://www.jmock.org/),
13 * [EasyMock](http://www.easymock.org/), and
14 * [Hamcrest](http://code.google.com/p/hamcrest/),
15
16and designed with C++'s specifics in mind.
17
18Google mock:
19
20 * lets you create mock classes trivially using simple macros.
21 * supports a rich set of matchers and actions.
22 * handles unordered, partially ordered, or completely ordered expectations.
23 * is extensible by users.
24
25We hope you find it useful!
shiqiane35fdd92008-12-10 05:08:54 +000026
Billy Donahue3f4e79b2015-08-26 21:45:10 -040027### Features ###
shiqiane35fdd92008-12-10 05:08:54 +000028
Billy Donahue3f4e79b2015-08-26 21:45:10 -040029 * Provides a declarative syntax for defining mocks.
30 * Can easily define partial (hybrid) mocks, which are a cross of real
31 and mock objects.
32 * Handles functions of arbitrary types and overloaded functions.
33 * Comes with a rich set of matchers for validating function arguments.
34 * Uses an intuitive syntax for controlling the behavior of a mock.
35 * Does automatic verification of expectations (no record-and-replay needed).
36 * Allows arbitrary (partial) ordering constraints on
37 function calls to be expressed,.
Eduardo Caceres854b28f2017-08-10 18:05:32 +020038 * Lets an user extend it by defining new matchers and actions.
Billy Donahue3f4e79b2015-08-26 21:45:10 -040039 * Does not use exceptions.
40 * Is easy to learn and use.
shiqiane35fdd92008-12-10 05:08:54 +000041
zhanyong.wand19f5862010-04-14 16:26:57 +000042Please see the project page above for more information as well as the
43mailing list for questions, discussions, and development. There is
44also an IRC channel on OFTC (irc.oftc.net) #gtest available. Please
45join us!
shiqiane35fdd92008-12-10 05:08:54 +000046
Billy Donahue3f4e79b2015-08-26 21:45:10 -040047Please note that code under [scripts/generator](scripts/generator/) is
48from [cppclean](http://code.google.com/p/cppclean/) and released under
49the Apache License, which is different from Google Mock's license.
shiqiane35fdd92008-12-10 05:08:54 +000050
Billy Donahue23bd6d82015-08-30 12:36:37 -040051## Getting Started ##
52
53If you are new to the project, we suggest that you read the user
54documentation in the following order:
55
Billy Donahueba638682017-02-25 20:46:21 -050056 * Learn the [basics](../../master/googletest/docs/Primer.md) of
Billy Donahue23bd6d82015-08-30 12:36:37 -040057 Google Test, if you choose to use Google Mock with it (recommended).
Billy Donahueba638682017-02-25 20:46:21 -050058 * Read [Google Mock for Dummies](../../master/googlemock/docs/ForDummies.md).
Billy Donahue23bd6d82015-08-30 12:36:37 -040059 * Read the instructions below on how to build Google Mock.
60
61You can also watch Zhanyong's [talk](http://www.youtube.com/watch?v=sYpCyLI47rM) on Google Mock's usage and implementation.
62
63Once you understand the basics, check out the rest of the docs:
64
Billy Donahueba638682017-02-25 20:46:21 -050065 * [CheatSheet](../../master/googlemock/docs/CheatSheet.md) - all the commonly used stuff
Billy Donahue23bd6d82015-08-30 12:36:37 -040066 at a glance.
Billy Donahueba638682017-02-25 20:46:21 -050067 * [CookBook](../../master/googlemock/docs/CookBook.md) - recipes for getting things done,
Billy Donahue23bd6d82015-08-30 12:36:37 -040068 including advanced techniques.
69
70If you need help, please check the
Samuel Roth995db992016-09-12 12:27:36 -040071[KnownIssues](docs/KnownIssues.md) and
72[FrequentlyAskedQuestions](docs/FrequentlyAskedQuestions.md) before
Billy Donahue23bd6d82015-08-30 12:36:37 -040073posting a question on the
74[discussion group](http://groups.google.com/group/googlemock).
75
76
77### Using Google Mock Without Google Test ###
78
79Google Mock is not a testing framework itself. Instead, it needs a
80testing framework for writing tests. Google Mock works seamlessly
Herbert Thielene033d8c2017-08-31 18:12:17 +020081with [Google Test](https://github.com/google/googletest), but
Samuel Roth0e0ff5c2016-09-12 12:33:44 -040082you can also use it with [any C++ testing framework](../../master/googlemock/docs/ForDummies.md#using-google-mock-with-any-testing-framework).
Billy Donahue23bd6d82015-08-30 12:36:37 -040083
Billy Donahue37b5c292015-08-26 18:28:20 -040084### Requirements for End Users ###
zhanyong.wand19f5862010-04-14 16:26:57 +000085
Billy Donahue37b5c292015-08-26 18:28:20 -040086Google Mock is implemented on top of [Google Test](
Billy Donahue3f4e79b2015-08-26 21:45:10 -040087http://github.com/google/googletest/), and depends on it.
Billy Donahue37b5c292015-08-26 18:28:20 -040088You must use the bundled version of Google Test when using Google Mock.
shiqiane35fdd92008-12-10 05:08:54 +000089
zhanyong.wan62417be2009-03-19 18:39:41 +000090You can also easily configure Google Mock to work with another testing
Billy Donahue37b5c292015-08-26 18:28:20 -040091framework, although it will still need Google Test. Please read
Billy Donahue37b5c292015-08-26 18:28:20 -040092["Using_Google_Mock_with_Any_Testing_Framework"](
Samuel Roth32b4a9b2016-09-12 12:34:50 -040093 ../../master/googlemock/docs/ForDummies.md#using-google-mock-with-any-testing-framework)
Billy Donahue37b5c292015-08-26 18:28:20 -040094for instructions.
zhanyong.wan62417be2009-03-19 18:39:41 +000095
shiqiane35fdd92008-12-10 05:08:54 +000096Google Mock depends on advanced C++ features and thus requires a more
Billy Donahue37b5c292015-08-26 18:28:20 -040097modern compiler. The following are needed to use Google Mock:
shiqiane35fdd92008-12-10 05:08:54 +000098
Billy Donahue37b5c292015-08-26 18:28:20 -040099#### Linux Requirements ####
zhanyong.wand19f5862010-04-14 16:26:57 +0000100
shiqiane35fdd92008-12-10 05:08:54 +0000101 * GNU-compatible Make or "gmake"
102 * POSIX-standard shell
103 * POSIX(-2) Regular Expressions (regex.h)
zhanyong.wand19f5862010-04-14 16:26:57 +0000104 * C++98-standard-compliant compiler (e.g. GCC 3.4 or newer)
shiqiane35fdd92008-12-10 05:08:54 +0000105
Billy Donahue37b5c292015-08-26 18:28:20 -0400106#### Windows Requirements ####
zhanyong.wand19f5862010-04-14 16:26:57 +0000107
shiqiane35fdd92008-12-10 05:08:54 +0000108 * Microsoft Visual C++ 8.0 SP1 or newer
shiqiane35fdd92008-12-10 05:08:54 +0000109
Billy Donahue37b5c292015-08-26 18:28:20 -0400110#### Mac OS X Requirements ####
zhanyong.wand19f5862010-04-14 16:26:57 +0000111
shiqiane35fdd92008-12-10 05:08:54 +0000112 * Mac OS X 10.4 Tiger or newer
113 * Developer Tools Installed
114
Billy Donahue37b5c292015-08-26 18:28:20 -0400115### Requirements for Contributors ###
zhanyong.wand19f5862010-04-14 16:26:57 +0000116
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400117We welcome patches. If you plan to contribute a patch, you need to
118build Google Mock and its tests, which has further requirements:
zhanyong.wand19f5862010-04-14 16:26:57 +0000119
120 * Automake version 1.9 or newer
121 * Autoconf version 2.59 or newer
122 * Libtool / Libtoolize
123 * Python version 2.3 or newer (for running some of the tests and
124 re-generating certain source files from templates)
125
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400126### Building Google Mock ###
shiqiane35fdd92008-12-10 05:08:54 +0000127
danilchab2521c82017-03-11 01:02:21 +0100128#### Using CMake ####
129
Craig Scottcb502b72015-12-08 00:14:24 +1100130If you have CMake available, it is recommended that you follow the
131[build instructions][gtest_cmakebuild]
danilchab2521c82017-03-11 01:02:21 +0100132as described for Google Test.
133
134If are using Google Mock with an
Craig Scottcb502b72015-12-08 00:14:24 +1100135existing CMake project, the section
136[Incorporating Into An Existing CMake Project][gtest_incorpcmake]
danilchab2521c82017-03-11 01:02:21 +0100137may be of particular interest.
danilcha5ff68052017-03-12 18:11:22 +0100138To make it work for Google Mock you will need to change
danilchab2521c82017-03-11 01:02:21 +0100139
140 target_link_libraries(example gtest_main)
141
142to
143
danilcha5ff68052017-03-12 18:11:22 +0100144 target_link_libraries(example gmock_main)
145
146This works because `gmock_main` library is compiled with Google Test.
147However, it does not automatically add Google Test includes.
148Therefore you will also have to change
danilchab2521c82017-03-11 01:02:21 +0100149
danilcha5ff68052017-03-12 18:11:22 +0100150 if (CMAKE_VERSION VERSION_LESS 2.8.11)
151 include_directories("${gtest_SOURCE_DIR}/include")
152 endif()
danilchab2521c82017-03-11 01:02:21 +0100153
danilcha5ff68052017-03-12 18:11:22 +0100154to
danilchab2521c82017-03-11 01:02:21 +0100155
danilcha5ff68052017-03-12 18:11:22 +0100156 if (CMAKE_VERSION VERSION_LESS 2.8.11)
157 include_directories(BEFORE SYSTEM
158 "${gtest_SOURCE_DIR}/include" "${gmock_SOURCE_DIR}/include")
159 else()
160 target_include_directories(gmock_main SYSTEM BEFORE INTERFACE
161 "${gtest_SOURCE_DIR}/include" "${gmock_SOURCE_DIR}/include")
162 endif()
163
164This will addtionally mark Google Mock includes as system, which will
165silence compiler warnings when compiling your tests using clang with
166`-Wpedantic -Wall -Wextra -Wconversion`.
danilchab2521c82017-03-11 01:02:21 +0100167
Craig Scottcb502b72015-12-08 00:14:24 +1100168
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400169#### Preparing to Build (Unix only) ####
shiqiane35fdd92008-12-10 05:08:54 +0000170
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400171If you are using a Unix system and plan to use the GNU Autotools build
zhanyong.wand19f5862010-04-14 16:26:57 +0000172system to build Google Mock (described below), you'll need to
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400173configure it now.
zhanyong.wand19f5862010-04-14 16:26:57 +0000174
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400175To prepare the Autotools build system:
zhanyong.wand19f5862010-04-14 16:26:57 +0000176
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400177 cd googlemock
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400178 autoreconf -fvi
zhanyong.wand19f5862010-04-14 16:26:57 +0000179
zhanyong.wand19f5862010-04-14 16:26:57 +0000180To build Google Mock and your tests that use it, you need to tell your
181build system where to find its headers and source files. The exact
182way to do it depends on which build system you use, and is usually
183straightforward.
184
zhanyong.wand19f5862010-04-14 16:26:57 +0000185This section shows how you can integrate Google Mock into your
186existing build system.
187
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400188Suppose you put Google Mock in directory `${GMOCK_DIR}` and Google Test
189in `${GTEST_DIR}` (the latter is `${GMOCK_DIR}/gtest` by default). To
zhanyong.wand19f5862010-04-14 16:26:57 +0000190build Google Mock, create a library build target (or a project as
191called by Visual Studio and Xcode) to compile
192
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400193 ${GTEST_DIR}/src/gtest-all.cc and ${GMOCK_DIR}/src/gmock-all.cc
zhanyong.wand19f5862010-04-14 16:26:57 +0000194
195with
196
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400197 ${GTEST_DIR}/include and ${GMOCK_DIR}/include
zhanyong.wand19f5862010-04-14 16:26:57 +0000198
zhanyong.wancf406042013-02-27 17:53:45 +0000199in the system header search path, and
200
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400201 ${GTEST_DIR} and ${GMOCK_DIR}
zhanyong.wancf406042013-02-27 17:53:45 +0000202
203in the normal header search path. Assuming a Linux-like system and gcc,
zhanyong.wand19f5862010-04-14 16:26:57 +0000204something like the following will do:
205
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400206 g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \
207 -isystem ${GMOCK_DIR}/include -I${GMOCK_DIR} \
208 -pthread -c ${GTEST_DIR}/src/gtest-all.cc
209 g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \
210 -isystem ${GMOCK_DIR}/include -I${GMOCK_DIR} \
211 -pthread -c ${GMOCK_DIR}/src/gmock-all.cc
212 ar -rv libgmock.a gtest-all.o gmock-all.o
zhanyong.wand19f5862010-04-14 16:26:57 +0000213
zhanyong.wancf406042013-02-27 17:53:45 +0000214(We need -pthread as Google Test and Google Mock use threads.)
215
zhanyong.wand19f5862010-04-14 16:26:57 +0000216Next, you should compile your test source file with
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400217${GTEST\_DIR}/include and ${GMOCK\_DIR}/include in the header search
zhanyong.wand19f5862010-04-14 16:26:57 +0000218path, and link it with gmock and any other necessary libraries:
219
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400220 g++ -isystem ${GTEST_DIR}/include -isystem ${GMOCK_DIR}/include \
221 -pthread path/to/your_test.cc libgmock.a -o your_test
zhanyong.wand19f5862010-04-14 16:26:57 +0000222
223As an example, the make/ directory contains a Makefile that you can
224use to build Google Mock on systems where GNU make is available
225(e.g. Linux, Mac OS X, and Cygwin). It doesn't try to build Google
226Mock's own tests. Instead, it just builds the Google Mock library and
227a sample test. You can use it as a starting point for your own build
228script.
229
230If the default settings are correct for your environment, the
231following commands should succeed:
232
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400233 cd ${GMOCK_DIR}/make
234 make
235 ./gmock_test
zhanyong.wand19f5862010-04-14 16:26:57 +0000236
Billy Donahue3f4e79b2015-08-26 21:45:10 -0400237If you see errors, try to tweak the contents of
238[make/Makefile](make/Makefile) to make them go away.
zhanyong.wand19f5862010-04-14 16:26:57 +0000239
240### Windows ###
241
vladlosevb3e90422011-02-12 01:56:45 +0000242The msvc/2005 directory contains VC++ 2005 projects and the msvc/2010
243directory contains VC++ 2010 projects for building Google Mock and
244selected tests.
zhanyong.wand19f5862010-04-14 16:26:57 +0000245
vladlosevb3e90422011-02-12 01:56:45 +0000246Change to the appropriate directory and run "msbuild gmock.sln" to
247build the library and tests (or open the gmock.sln in the MSVC IDE).
248If you want to create your own project to use with Google Mock, you'll
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400249have to configure it to use the `gmock_config` propety sheet. For that:
zhanyong.wand19f5862010-04-14 16:26:57 +0000250
251 * Open the Property Manager window (View | Other Windows | Property Manager)
252 * Right-click on your project and select "Add Existing Property Sheet..."
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400253 * Navigate to `gmock_config.vsprops` or `gmock_config.props` and select it.
zhanyong.wand19f5862010-04-14 16:26:57 +0000254 * In Project Properties | Configuration Properties | General | Additional
255 Include Directories, type <path to Google Mock>/include.
256
Billy Donahue37b5c292015-08-26 18:28:20 -0400257### Tweaking Google Mock ###
zhanyong.wand19f5862010-04-14 16:26:57 +0000258
259Google Mock can be used in diverse environments. The default
260configuration may not work (or may not work well) out of the box in
261some environments. However, you can easily tweak Google Mock by
262defining control macros on the compiler command line. Generally,
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400263these macros are named like `GTEST_XYZ` and you define them to either 1
zhanyong.wand19f5862010-04-14 16:26:57 +0000264or 0 to enable or disable a certain feature.
265
266We list the most frequently used macros below. For a complete list,
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400267see file [${GTEST\_DIR}/include/gtest/internal/gtest-port.h](
268../googletest/include/gtest/internal/gtest-port.h).
zhanyong.wand19f5862010-04-14 16:26:57 +0000269
270### Choosing a TR1 Tuple Library ###
271
zhanyong.wan90c90f92009-06-17 22:11:04 +0000272Google Mock uses the C++ Technical Report 1 (TR1) tuple library
273heavily. Unfortunately TR1 tuple is not yet widely available with all
274compilers. The good news is that Google Test 1.4.0+ implements a
275subset of TR1 tuple that's enough for Google Mock's need. Google Mock
276will automatically use that implementation when the compiler doesn't
277provide TR1 tuple.
278
279Usually you don't need to care about which tuple library Google Test
280and Google Mock use. However, if your project already uses TR1 tuple,
281you need to tell Google Test and Google Mock to use the same TR1 tuple
zhanyong.wand19f5862010-04-14 16:26:57 +0000282library the rest of your project uses, or the two tuple
zhanyong.wan90c90f92009-06-17 22:11:04 +0000283implementations will clash. To do that, add
284
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400285 -DGTEST_USE_OWN_TR1_TUPLE=0
zhanyong.wan90c90f92009-06-17 22:11:04 +0000286
287to the compiler flags while compiling Google Test, Google Mock, and
zhanyong.wand19f5862010-04-14 16:26:57 +0000288your tests. If you want to force Google Test and Google Mock to use
289their own tuple library, just add
290
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400291 -DGTEST_USE_OWN_TR1_TUPLE=1
zhanyong.wand19f5862010-04-14 16:26:57 +0000292
293to the compiler flags instead.
zhanyong.wan90c90f92009-06-17 22:11:04 +0000294
295If you want to use Boost's TR1 tuple library with Google Mock, please
296refer to the Boost website (http://www.boost.org/) for how to obtain
297it and set it up.
298
vladlosevbce81342011-05-20 21:15:36 +0000299### As a Shared Library (DLL) ###
300
301Google Mock is compact, so most users can build and link it as a static
302library for the simplicity. Google Mock can be used as a DLL, but the
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400303same DLL must contain Google Test as well. See
304[Google Test's README][gtest_readme]
305for instructions on how to set up necessary compiler settings.
vladlosevbce81342011-05-20 21:15:36 +0000306
307### Tweaking Google Mock ###
shiqiane35fdd92008-12-10 05:08:54 +0000308
zhanyong.wand19f5862010-04-14 16:26:57 +0000309Most of Google Test's control macros apply to Google Mock as well.
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400310Please see [Google Test's README][gtest_readme] for how to tweak them.
shiqianc50af1a2008-12-11 05:22:15 +0000311
Billy Donahue37b5c292015-08-26 18:28:20 -0400312### Upgrading from an Earlier Version ###
shiqianc50af1a2008-12-11 05:22:15 +0000313
zhanyong.wand19f5862010-04-14 16:26:57 +0000314We strive to keep Google Mock releases backward compatible.
315Sometimes, though, we have to make some breaking changes for the
316users' long-term benefits. This section describes what you'll need to
317do if you are upgrading from an earlier version of Google Mock.
318
Billy Donahue37b5c292015-08-26 18:28:20 -0400319#### Upgrading from 1.1.0 or Earlier ####
zhanyong.wand19f5862010-04-14 16:26:57 +0000320
321You may need to explicitly enable or disable Google Test's own TR1
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400322tuple library. See the instructions in section "[Choosing a TR1 Tuple
323Library](../googletest/#choosing-a-tr1-tuple-library)".
zhanyong.wand19f5862010-04-14 16:26:57 +0000324
Billy Donahue37b5c292015-08-26 18:28:20 -0400325#### Upgrading from 1.4.0 or Earlier ####
zhanyong.wand19f5862010-04-14 16:26:57 +0000326
327On platforms where the pthread library is available, Google Test and
328Google Mock use it in order to be thread-safe. For this to work, you
329may need to tweak your compiler and/or linker flags. Please see the
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400330"[Multi-threaded Tests](../googletest#multi-threaded-tests
331)" section in file Google Test's README for what you may need to do.
zhanyong.wand19f5862010-04-14 16:26:57 +0000332
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400333If you have custom matchers defined using `MatcherInterface` or
334`MakePolymorphicMatcher()`, you'll need to update their definitions to
335use the new matcher API (
Herbert Thielene033d8c2017-08-31 18:12:17 +0200336[monomorphic](./docs/CookBook.md#writing-new-monomorphic-matchers),
337[polymorphic](./docs/CookBook.md#writing-new-polymorphic-matchers)).
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400338Matchers defined using `MATCHER()` or `MATCHER_P*()` aren't affected.
zhanyong.wand19f5862010-04-14 16:26:57 +0000339
Billy Donahue37b5c292015-08-26 18:28:20 -0400340### Developing Google Mock ###
zhanyong.wand19f5862010-04-14 16:26:57 +0000341
342This section discusses how to make your own changes to Google Mock.
343
Billy Donahue37b5c292015-08-26 18:28:20 -0400344#### Testing Google Mock Itself ####
zhanyong.wand19f5862010-04-14 16:26:57 +0000345
346To make sure your changes work as intended and don't break existing
347functionality, you'll want to compile and run Google Test's own tests.
348For that you'll need Autotools. First, make sure you have followed
Billy Donahue37b5c292015-08-26 18:28:20 -0400349the instructions above to configure Google Mock.
zhanyong.wand19f5862010-04-14 16:26:57 +0000350Then, create a build output directory and enter it. Next,
351
Billy Donahue37b5c292015-08-26 18:28:20 -0400352 ${GMOCK_DIR}/configure # try --help for more info
zhanyong.wand19f5862010-04-14 16:26:57 +0000353
354Once you have successfully configured Google Mock, the build steps are
355standard for GNU-style OSS packages.
356
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400357 make # Standard makefile following GNU conventions
358 make check # Builds and runs all tests - all should pass.
shiqiane35fdd92008-12-10 05:08:54 +0000359
shiqianc50af1a2008-12-11 05:22:15 +0000360Note that when building your project against Google Mock, you are building
zhanyong.wand19f5862010-04-14 16:26:57 +0000361against Google Test as well. There is no need to configure Google Test
shiqianc50af1a2008-12-11 05:22:15 +0000362separately.
shiqiane35fdd92008-12-10 05:08:54 +0000363
Billy Donahue37b5c292015-08-26 18:28:20 -0400364#### Contributing a Patch ####
shiqianc6cece72008-12-10 07:50:41 +0000365
Billy Donahue37b5c292015-08-26 18:28:20 -0400366We welcome patches.
367Please read the [Developer's Guide](docs/DevGuide.md)
368for how you can contribute. In particular, make sure you have signed
zhanyong.wand19f5862010-04-14 16:26:57 +0000369the Contributor License Agreement, or we won't be able to accept the
370patch.
371
shiqiane35fdd92008-12-10 05:08:54 +0000372Happy testing!
Billy Donahue06fcd9f2015-08-25 13:51:43 -0400373
Billy Donahue37b5c292015-08-26 18:28:20 -0400374[gtest_readme]: ../googletest/README.md "googletest"
Craig Scottcb502b72015-12-08 00:14:24 +1100375[gtest_cmakebuild]: ../googletest/README.md#using-cmake "Using CMake"
376[gtest_incorpcmake]: ../googletest/README.md#incorporating-into-an-existing-cmake-project "Incorporating Into An Existing CMake Project"