2020-09-16 00:33:41 +08:00
# GoogleTest
2015-08-25 06:41:02 +08:00
2020-12-08 03:36:15 +08:00
### Announcements
2018-08-10 22:59:52 +08:00
2021-03-10 09:08:31 +08:00
#### Live at Head
GoogleTest now follows the
[Abseil Live at Head philosophy ](https://abseil.io/about/philosophy#upgrade-support ).
2022-04-06 22:38:58 +08:00
We recommend
[updating to the latest commit in the `main` branch as often as possible ](https://github.com/abseil/abseil-cpp/blob/master/FAQ.md#what-is-live-at-head-and-how-do-i-do-it ).
2023-05-16 22:05:07 +08:00
We do publish occasional semantic versions, tagged with
2023-05-17 23:30:21 +08:00
`v${major}.${minor}.${patch}` (e.g. `v1.13.0` ).
2021-03-10 09:08:31 +08:00
#### Documentation Updates
Our documentation is now live on GitHub Pages at
https://google.github.io/googletest/. We recommend browsing the documentation on
GitHub Pages rather than directly in the repository.
2023-01-18 03:37:18 +08:00
#### Release 1.13.0
2018-08-10 22:59:52 +08:00
2023-01-18 03:37:18 +08:00
[Release 1.13.0 ](https://github.com/google/googletest/releases/tag/v1.13.0 ) is
now available.
2015-08-25 06:41:02 +08:00
2023-01-18 03:37:18 +08:00
The 1.13.x branch requires at least C++14.
2022-07-01 00:53:12 +08:00
2023-01-18 04:13:58 +08:00
#### Continuous Integration
We use Google's internal systems for continuous integration. \
GitHub Actions were added for the convenience of open source contributors. They
are exclusively maintained by the open source community and not used by the
GoogleTest team.
2019-10-04 00:58:38 +08:00
#### Coming Soon
2015-08-25 06:41:02 +08:00
2021-03-10 09:08:31 +08:00
* We are planning to take a dependency on
2019-10-04 00:58:38 +08:00
[Abseil ](https://github.com/abseil/abseil-cpp ).
2021-03-10 09:08:31 +08:00
* More documentation improvements are planned.
2019-06-12 23:15:00 +08:00
2020-09-16 00:33:41 +08:00
## Welcome to **GoogleTest**, Google's C++ test framework!
2019-06-12 23:15:00 +08:00
This repository is a merger of the formerly separate GoogleTest and GoogleMock
projects. These were so closely related that it makes sense to maintain and
release them together.
2020-12-08 03:36:15 +08:00
### Getting Started
2019-06-12 23:15:00 +08:00
2021-03-10 09:08:31 +08:00
See the [GoogleTest User's Guide ](https://google.github.io/googletest/ ) for
documentation. We recommend starting with the
[GoogleTest Primer ](https://google.github.io/googletest/primer.html ).
2015-08-31 00:36:37 +08:00
2021-03-10 09:08:31 +08:00
More information about building GoogleTest can be found at
[googletest/README.md ](googletest/README.md ).
2015-08-31 00:36:37 +08:00
2023-05-16 04:17:55 +08:00
| Feature | Description |
| ---------------------------- | --------------------------------------------- |
| xUnit test framework | Googletest is based on the |
2023-05-30 16:20:23 +08:00
| | [xUnit ](https\://en.wikipedia.org/wiki/XUnit ) |
| | testing framework, a popular architecture for |
| | unit testing |
2023-05-16 04:17:55 +08:00
| Test discovery | Googletest automatically discovers and runs |
2023-05-30 16:20:23 +08:00
| | your tests, eliminating the need to manually |
| | register your tests |
2023-05-16 04:17:55 +08:00
| Rich set of assertions | Googletest provides a variety of assertions, |
2023-05-30 16:20:23 +08:00
| | such as equality, inequality, exceptions, and |
| | more, making it easy to test your code |
2023-05-16 04:17:55 +08:00
| User-defined assertions | You can define your own assertions with |
2023-05-30 16:20:23 +08:00
| | Googletest, making it simple to write tests |
| | that are specific to your code |
2023-05-16 04:17:55 +08:00
| Death tests | Googletest supports death tests, which verify |
2023-05-30 16:20:23 +08:00
| | that your code exits in a certain way, making |
| | it useful for testing error-handling code |
2023-05-16 04:17:55 +08:00
| Fatal and non-fatal failures | You can specify whether a test failure should |
2023-05-30 16:20:23 +08:00
| | be treated as fatal or non-fatal with |
| | Googletest, allowing tests to continue |
| | running even if a failure occurs |
2023-05-16 04:17:55 +08:00
| Value-parameterized tests | Googletest supports value-parameterized |
2023-05-30 16:20:23 +08:00
| | tests, which run multiple times with |
| | different input values, making it useful for |
| | testing functions that take different inputs |
2023-05-16 04:17:55 +08:00
| Type-parameterized tests | Googletest also supports type-parameterized |
2023-05-30 16:20:23 +08:00
| | tests, which run with different data types, |
| | making it useful for testing functions that |
| | work with different data types |
2023-05-16 04:17:55 +08:00
| Various options for running | Googletest provides many options for running |
2023-05-30 16:20:23 +08:00
| tests | tests, including running individual tests, |
| | running tests in a specific order, and |
| | running tests in parallel |
2015-08-25 06:41:02 +08:00
2020-12-08 03:36:15 +08:00
## Supported Platforms
2015-08-25 06:41:02 +08:00
2022-08-17 01:23:11 +08:00
GoogleTest follows Google's
[Foundational C++ Support Policy ](https://opensource.google/documentation/policies/cplusplus-support ).
See
[this table ](https://github.com/google/oss-policies-info/blob/main/foundational-cxx-support-matrix.md )
for a list of currently supported versions compilers, platforms, and build
tools.
2015-08-25 06:41:02 +08:00
2020-09-16 00:33:41 +08:00
## Who Is Using GoogleTest?
2015-08-25 06:41:02 +08:00
2020-09-16 00:33:41 +08:00
In addition to many internal projects at Google, GoogleTest is also used by the
2019-06-12 23:15:00 +08:00
following notable projects:
2015-08-25 06:41:02 +08:00
2019-06-12 23:15:00 +08:00
* The [Chromium projects ](http://www.chromium.org/ ) (behind the Chrome browser
and Chrome OS).
* The [LLVM ](http://llvm.org/ ) compiler.
* [Protocol Buffers ](https://github.com/google/protobuf ), Google's data
2015-08-27 06:28:20 +08:00
interchange format.
2019-06-12 23:15:00 +08:00
* The [OpenCV ](http://opencv.org/ ) computer vision library.
2015-08-25 06:41:02 +08:00
2019-06-12 23:15:00 +08:00
## Related Open Source Projects
2015-08-25 06:41:02 +08:00
2019-06-12 23:15:00 +08:00
[GTest Runner ](https://github.com/nholthaus/gtest-runner ) is a Qt5 based
automated test-runner and Graphical User Interface with powerful features for
Windows and Linux platforms.
2016-03-27 07:38:55 +08:00
2020-11-03 11:26:39 +08:00
[GoogleTest UI ](https://github.com/ospector/gtest-gbar ) is a test runner that
2019-06-12 23:15:00 +08:00
runs your test binary, allows you to track its progress via a progress bar, and
2021-06-13 18:50:40 +08:00
displays a list of test failures. Clicking on one shows failure text. GoogleTest
UI is written in C#.
2015-08-25 06:41:02 +08:00
2015-08-26 06:23:36 +08:00
[GTest TAP Listener ](https://github.com/kinow/gtest-tap-listener ) is an event
2020-09-16 00:33:41 +08:00
listener for GoogleTest that implements the
2015-11-26 00:25:03 +08:00
[TAP protocol ](https://en.wikipedia.org/wiki/Test_Anything_Protocol ) for test
2015-08-26 06:23:36 +08:00
result output. If your test runner understands TAP, you may find it useful.
2015-08-25 06:41:02 +08:00
2017-07-12 04:23:01 +08:00
[gtest-parallel ](https://github.com/google/gtest-parallel ) is a test runner that
runs tests from your binary in parallel to provide significant speed-up.
2019-06-12 23:18:40 +08:00
[GoogleTest Adapter ](https://marketplace.visualstudio.com/items?itemName=DavidSchuldenfrei.gtest-adapter )
2022-04-07 01:33:06 +08:00
is a VS Code extension allowing to view GoogleTest in a tree view and run/debug
2020-11-03 11:26:39 +08:00
your tests.
2018-08-28 03:27:58 +08:00
2020-05-29 07:54:38 +08:00
[C++ TestMate ](https://github.com/matepek/vscode-catch2-test-adapter ) is a VS
2022-04-07 01:33:06 +08:00
Code extension allowing to view GoogleTest in a tree view and run/debug your
2020-05-29 07:54:38 +08:00
tests.
2018-08-28 03:27:58 +08:00
2019-10-09 17:44:03 +08:00
[Cornichon ](https://pypi.org/project/cornichon/ ) is a small Gherkin DSL parser
2020-09-16 00:33:41 +08:00
that generates stub code for GoogleTest.
2019-10-09 17:44:03 +08:00
2020-12-08 03:36:15 +08:00
## Contributing Changes
2015-08-26 05:56:57 +08:00
2021-03-11 06:22:08 +08:00
Please read
2022-06-22 19:15:53 +08:00
[`CONTRIBUTING.md` ](https://github.com/google/googletest/blob/main/CONTRIBUTING.md )
2021-03-11 06:22:08 +08:00
for details on how to contribute to this project.
2015-08-26 05:56:57 +08:00
2015-08-27 06:28:20 +08:00
Happy testing!