The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
1.0 KiB

4 weeks ago
  1. # GoogleTest User's Guide
  2. ## Welcome to GoogleTest!
  3. GoogleTest is Google's C++ testing and mocking framework. This user's guide has
  4. the following contents:
  5. * [GoogleTest Primer](primer.md) - Teaches you how to write simple tests using
  6. GoogleTest. Read this first if you are new to GoogleTest.
  7. * [GoogleTest Advanced](advanced.md) - Read this when you've finished the
  8. Primer and want to utilize GoogleTest to its full potential.
  9. * [GoogleTest Samples](samples.md) - Describes some GoogleTest samples.
  10. * [GoogleTest FAQ](faq.md) - Have a question? Want some tips? Check here
  11. first.
  12. * [Mocking for Dummies](gmock_for_dummies.md) - Teaches you how to create mock
  13. objects and use them in tests.
  14. * [Mocking Cookbook](gmock_cook_book.md) - Includes tips and approaches to
  15. common mocking use cases.
  16. * [Mocking Cheat Sheet](gmock_cheat_sheet.md) - A handy reference for
  17. matchers, actions, invariants, and more.
  18. * [Mocking FAQ](gmock_faq.md) - Contains answers to some mocking-specific
  19. questions.