2020-09-15 19:33:41 +03:00
# GoogleTest
2015-08-25 01:41:02 +03:00
2020-12-07 22:36:15 +03:00
### Announcements
2018-08-10 17:59:52 +03:00
2021-03-10 04:08:31 +03:00
#### Live at Head
GoogleTest now follows the
[Abseil Live at Head philosophy ](https://abseil.io/about/philosophy#upgrade-support ).
2022-04-06 17:38:58 +03: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 17:05:07 +03:00
We do publish occasional semantic versions, tagged with
2023-08-02 19:44:39 +03:00
`v${major}.${minor}.${patch}` (e.g. `v1.14.0` ).
2021-03-10 04:08:31 +03: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-08-02 19:44:39 +03:00
#### Release 1.14.0
2018-08-10 17:59:52 +03:00
2023-08-02 19:44:39 +03:00
[Release 1.14.0 ](https://github.com/google/googletest/releases/tag/v1.14.0 ) is
2023-01-17 22:37:18 +03:00
now available.
2015-08-25 01:41:02 +03:00
2023-08-02 19:44:39 +03:00
The 1.14.x branch requires at least C++14.
2022-06-30 19:53:12 +03:00
2023-01-17 23:13:58 +03:00
#### Continuous Integration
We use Google's internal systems for continuous integration. \
2023-06-16 13:29:16 +03:00
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
2023-01-17 23:13:58 +03:00
GoogleTest team.
2019-10-03 19:58:38 +03:00
#### Coming Soon
2015-08-25 01:41:02 +03:00
2021-03-10 04:08:31 +03:00
* We are planning to take a dependency on
2019-10-03 19:58:38 +03:00
[Abseil ](https://github.com/abseil/abseil-cpp ).
2021-03-10 04:08:31 +03:00
* More documentation improvements are planned.
2019-06-12 18:15:00 +03:00
2020-09-15 19:33:41 +03:00
## Welcome to **GoogleTest**, Google's C++ test framework!
2019-06-12 18:15:00 +03: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-07 22:36:15 +03:00
### Getting Started
2019-06-12 18:15:00 +03:00
2021-03-10 04:08:31 +03: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-30 19:36:37 +03:00
2021-03-10 04:08:31 +03:00
More information about building GoogleTest can be found at
[googletest/README.md ](googletest/README.md ).
2015-08-30 19:36:37 +03:00
2023-06-01 22:28:00 +03:00
## Features
2023-06-05 18:47:33 +03:00
* xUnit test framework: \
Googletest is based on the [xUnit ](https://en.wikipedia.org/wiki/XUnit )
2023-06-01 22:28:00 +03:00
testing framework, a popular architecture for unit testing
2023-06-05 18:47:33 +03:00
* Test discovery: \
2023-06-01 22:28:00 +03:00
Googletest automatically discovers and runs your tests, eliminating the need
to manually register your tests
2023-06-05 18:47:33 +03:00
* Rich set of assertions: \
2023-06-01 22:28:00 +03:00
Googletest provides a variety of assertions, such as equality, inequality,
exceptions, and more, making it easy to test your code
2023-06-05 18:47:33 +03:00
* User-defined assertions: \
2023-06-01 22:28:00 +03:00
You can define your own assertions with Googletest, making it simple to
write tests that are specific to your code
2023-06-05 18:47:33 +03:00
* Death tests: \
2023-06-01 22:28:00 +03:00
Googletest supports death tests, which verify that your code exits in a
certain way, making it useful for testing error-handling code
2023-06-05 18:47:33 +03:00
* Fatal and non-fatal failures: \
You can specify whether a test failure should be treated as fatal or
2023-06-01 22:28:00 +03:00
non-fatal with Googletest, allowing tests to continue running even if a
failure occurs
2023-06-05 18:47:33 +03:00
* Value-parameterized tests: \
2023-06-01 22:28:00 +03:00
Googletest supports value-parameterized tests, which run multiple times with
different input values, making it useful for testing functions that take
different inputs
2023-06-05 18:47:33 +03:00
* Type-parameterized tests: \
2023-06-01 22:28:00 +03:00
Googletest also supports type-parameterized tests, which run with different
data types, making it useful for testing functions that work with different
data types
2023-06-05 18:47:33 +03:00
* Various options for running tests: \
2023-06-01 22:28:00 +03:00
Googletest provides many options for running tests including running
2023-06-16 13:29:16 +03:00
individual tests, running tests in a specific order and running tests in
2023-06-01 22:28:00 +03:00
parallel
2015-08-25 01:41:02 +03:00
2020-12-07 22:36:15 +03:00
## Supported Platforms
2015-08-25 01:41:02 +03:00
2022-08-16 20:23:11 +03: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 )
2023-06-16 13:29:16 +03:00
for a list of currently supported versions of compilers, platforms, and build
2022-08-16 20:23:11 +03:00
tools.
2015-08-25 01:41:02 +03:00
2020-09-15 19:33:41 +03:00
## Who Is Using GoogleTest?
2015-08-25 01:41:02 +03:00
2020-09-15 19:33:41 +03:00
In addition to many internal projects at Google, GoogleTest is also used by the
2019-06-12 18:15:00 +03:00
following notable projects:
2015-08-25 01:41:02 +03:00
2023-08-22 20:24:02 +03:00
* The [Chromium projects ](https://www.chromium.org/ ) (behind the Chrome
browser and Chrome OS).
2023-08-11 11:01:14 +03:00
* The [LLVM ](https://llvm.org/ ) compiler.
2019-06-12 18:15:00 +03:00
* [Protocol Buffers ](https://github.com/google/protobuf ), Google's data
2015-08-27 01:28:20 +03:00
interchange format.
2023-08-11 11:01:14 +03:00
* The [OpenCV ](https://opencv.org/ ) computer vision library.
2015-08-25 01:41:02 +03:00
2019-06-12 18:15:00 +03:00
## Related Open Source Projects
2015-08-25 01:41:02 +03:00
2019-06-12 18:15:00 +03: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 02:38:55 +03:00
2020-11-03 06:26:39 +03:00
[GoogleTest UI ](https://github.com/ospector/gtest-gbar ) is a test runner that
2019-06-12 18:15:00 +03:00
runs your test binary, allows you to track its progress via a progress bar, and
2021-06-13 13:50:40 +03:00
displays a list of test failures. Clicking on one shows failure text. GoogleTest
UI is written in C#.
2015-08-25 01:41:02 +03:00
2015-08-26 01:23:36 +03:00
[GTest TAP Listener ](https://github.com/kinow/gtest-tap-listener ) is an event
2020-09-15 19:33:41 +03:00
listener for GoogleTest that implements the
2015-11-25 19:25:03 +03:00
[TAP protocol ](https://en.wikipedia.org/wiki/Test_Anything_Protocol ) for test
2015-08-26 01:23:36 +03:00
result output. If your test runner understands TAP, you may find it useful.
2015-08-25 01:41:02 +03:00
2017-07-11 23:23:01 +03: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 18:18:40 +03:00
[GoogleTest Adapter ](https://marketplace.visualstudio.com/items?itemName=DavidSchuldenfrei.gtest-adapter )
2022-04-06 20:33:06 +03:00
is a VS Code extension allowing to view GoogleTest in a tree view and run/debug
2020-11-03 06:26:39 +03:00
your tests.
2018-08-27 22:27:58 +03:00
2020-05-29 02:54:38 +03:00
[C++ TestMate ](https://github.com/matepek/vscode-catch2-test-adapter ) is a VS
2022-04-06 20:33:06 +03:00
Code extension allowing to view GoogleTest in a tree view and run/debug your
2020-05-29 02:54:38 +03:00
tests.
2018-08-27 22:27:58 +03:00
2019-10-09 12:44:03 +03:00
[Cornichon ](https://pypi.org/project/cornichon/ ) is a small Gherkin DSL parser
2020-09-15 19:33:41 +03:00
that generates stub code for GoogleTest.
2019-10-09 12:44:03 +03:00
2020-12-07 22:36:15 +03:00
## Contributing Changes
2015-08-26 00:56:57 +03:00
2021-03-11 01:22:08 +03:00
Please read
2022-06-22 14:15:53 +03:00
[`CONTRIBUTING.md` ](https://github.com/google/googletest/blob/main/CONTRIBUTING.md )
2021-03-11 01:22:08 +03:00
for details on how to contribute to this project.
2015-08-26 00:56:57 +03:00
2015-08-27 01:28:20 +03:00
Happy testing!