blob: b162c740116394bd6871fe9e65f78cd0289b258f [file] [log] [blame] [view]
Abseil Teamd9c309f2021-02-18 19:18:34 -05001# GoogleTest User's Guide
2
3## Welcome to GoogleTest!
4
5GoogleTest is Google's C++ testing and mocking framework. This user's guide has
6the following contents:
7
Abseil Team3832a412021-02-22 22:36:38 -05008* [GoogleTest Primer](primer.md) - Teaches you how to write simple tests using
Abseil Teamd9c309f2021-02-18 19:18:34 -05009 GoogleTest. Read this first if you are new to GoogleTest.
Abseil Team3832a412021-02-22 22:36:38 -050010* [GoogleTest Advanced](advanced.md) - Read this when you've finished the
11 Primer and want to utilize GoogleTest to its full potential.
12* [GoogleTest Samples](samples.md) - Describes some GoogleTest samples.
13* [GoogleTest FAQ](faq.md) - Have a question? Want some tips? Check here
14 first.
15* [Mocking for Dummies](gmock_for_dummies.md) - Teaches you how to create mock
Abseil Teamd9c309f2021-02-18 19:18:34 -050016 objects and use them in tests.
Abseil Team3832a412021-02-22 22:36:38 -050017* [Mocking Cookbook](gmock_cook_book.md) - Includes tips and approaches to
18 common mocking use cases.
19* [Mocking Cheat Sheet](gmock_cheat_sheet.md) - A handy reference for
20 matchers, actions, invariants, and more.
21* [Mocking FAQ](gmock_faq.md) - Contains answers to some mocking-specific
Abseil Teamd9c309f2021-02-18 19:18:34 -050022 questions.