googletest/README.md

124 lines
4.3 KiB
Markdown
Raw Normal View History

# GoogleTest
### Announcements
2018-08-10 17:59:52 +03:00
#### Live at Head
GoogleTest now follows the
[Abseil Live at Head philosophy](https://abseil.io/about/philosophy#upgrade-support).
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).
#### 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.
#### Release 1.13.0
2018-08-10 17:59:52 +03:00
[Release 1.13.0](https://github.com/google/googletest/releases/tag/v1.13.0) is
now available.
The 1.13.x branch requires at least C++14.
#### 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.
#### Coming Soon
* We are planning to take a dependency on
[Abseil](https://github.com/abseil/abseil-cpp).
* More documentation improvements are planned.
2019-06-12 18:15:00 +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.
### Getting Started
2019-06-12 18:15:00 +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
More information about building GoogleTest can be found at
[googletest/README.md](googletest/README.md).
2015-08-30 19:36:37 +03:00
2019-06-12 18:15:00 +03:00
## Features
2015-08-30 19:36:37 +03:00
2019-06-12 18:15:00 +03:00
* An [xUnit](https://en.wikipedia.org/wiki/XUnit) test framework.
* Test discovery.
* A rich set of assertions.
* User-defined assertions.
* Death tests.
* Fatal and non-fatal failures.
* Value-parameterized tests.
* Type-parameterized tests.
* Various options for running the tests.
* XML test report generation.
## Supported Platforms
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.
## Who Is Using GoogleTest?
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:
2019-06-12 18:15:00 +03: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 01:28:20 +03:00
interchange format.
2019-06-12 18:15:00 +03:00
* The [OpenCV](http://opencv.org/) computer vision library.
2019-06-12 18:15:00 +03:00
## Related Open Source Projects
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.
[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-26 01:23:36 +03:00
[GTest TAP Listener](https://github.com/kinow/gtest-tap-listener) is an event
listener for GoogleTest that implements the
[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.
[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
your tests.
2018-08-27 22:27:58 +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
tests.
2018-08-27 22:27:58 +03:00
[Cornichon](https://pypi.org/project/cornichon/) is a small Gherkin DSL parser
that generates stub code for GoogleTest.
## Contributing Changes
2015-08-26 00:56:57 +03:00
Please read
[`CONTRIBUTING.md`](https://github.com/google/googletest/blob/main/CONTRIBUTING.md)
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!