2019-06-12 18:15:00 +03:00
|
|
|
# Google Test
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
#### OSS Builds Status:
|
2015-08-27 04:45:10 +03:00
|
|
|
|
2019-01-03 19:41:17 +03:00
|
|
|
[![Build Status](https://api.travis-ci.org/google/googletest.svg?branch=master)](https://travis-ci.org/google/googletest)
|
2017-08-17 09:42:53 +03:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/4o38plt0xbo1ubc8/branch/master?svg=true)](https://ci.appveyor.com/project/GoogleTestAppVeyor/googletest/branch/master)
|
2015-08-31 16:43:03 +03:00
|
|
|
|
2019-10-03 19:58:38 +03:00
|
|
|
### Announcements:
|
2018-08-10 17:59:52 +03:00
|
|
|
|
2019-10-03 19:58:38 +03:00
|
|
|
#### Release 1.10.x
|
2018-08-10 17:59:52 +03:00
|
|
|
|
2019-10-11 14:27:05 +03:00
|
|
|
[Release 1.10.x](https://github.com/google/googletest/releases/tag/release-1.10.0)
|
|
|
|
is now available.
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-10-03 19:58:38 +03:00
|
|
|
#### Coming Soon
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-10-03 19:58:38 +03:00
|
|
|
* Post 1.10.x googletest will follow
|
|
|
|
[Abseil Live at Head philosophy](https://abseil.io/about/philosophy)
|
|
|
|
* We are also planning to take a dependency on
|
|
|
|
[Abseil](https://github.com/abseil/abseil-cpp).
|
2019-06-12 18:15:00 +03:00
|
|
|
|
|
|
|
## Welcome to **Google Test**, Google's C++ test framework!
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
The information for **Google Test** is available in the
|
2018-06-11 18:26:16 +03:00
|
|
|
[Google Test Primer](googletest/docs/primer.md) documentation.
|
2016-01-06 18:48:58 +03:00
|
|
|
|
2015-08-30 19:36:37 +03:00
|
|
|
**Google Mock** is an extension to Google Test for writing and using C++ mock
|
2019-06-12 18:15:00 +03:00
|
|
|
classes. See the separate [Google Mock documentation](googlemock/README.md).
|
2015-08-30 19:36:37 +03:00
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
More detailed documentation for googletest is in its interior
|
|
|
|
[googletest/README.md](googletest/README.md) file.
|
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.
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
## Platforms
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2015-08-26 01:23:36 +03:00
|
|
|
Google test has been used on a variety of platforms:
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
* Linux
|
|
|
|
* Mac OS X
|
|
|
|
* Windows
|
|
|
|
* Cygwin
|
|
|
|
* MinGW
|
|
|
|
* Windows Mobile
|
|
|
|
* Symbian
|
|
|
|
* PlatformIO
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
## Who Is Using Google Test?
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
In addition to many internal projects at Google, Google Test is also used by the
|
|
|
|
following notable projects:
|
2015-08-25 01:41:02 +03:00
|
|
|
|
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.
|
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
|
|
|
|
2019-06-12 18:15:00 +03:00
|
|
|
[Google Test UI](https://github.com/ospector/gtest-gbar) is test runner that
|
|
|
|
runs your test binary, allows you to track its progress via a progress bar, and
|
2015-08-26 01:23:36 +03:00
|
|
|
displays a list of test failures. Clicking on one shows failure text. Google
|
|
|
|
Test 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
|
|
|
|
listener for Google Test 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)
|
|
|
|
is a VS Code extension allowing to view Google Tests in a tree view, and
|
|
|
|
run/debug 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
|
|
|
|
Code extension allowing to view Google Tests in a tree view, and run/debug your
|
|
|
|
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
|
|
|
|
that generates stub code for Google Test.
|
|
|
|
|
2019-06-12 18:18:40 +03:00
|
|
|
## Requirements
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-10 17:51:41 +03:00
|
|
|
Google Test is designed to have fairly minimal requirements to build and use
|
|
|
|
with your projects, but there are some. If you notice any problems on your
|
2020-08-11 21:39:21 +03:00
|
|
|
platform, please file an issue on the
|
|
|
|
[GoogleTest GitHub Issue Tracker](https://github.com/google/googletest/issues).
|
|
|
|
|
2019-06-10 17:51:41 +03:00
|
|
|
Patches for fixing them are welcome!
|
2015-08-30 19:36:37 +03:00
|
|
|
|
2019-06-10 17:51:41 +03:00
|
|
|
### Build Requirements
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2015-08-30 19:36:37 +03:00
|
|
|
These are the base requirements to build and use Google Test from a source
|
2019-06-10 17:51:41 +03:00
|
|
|
package:
|
2015-08-25 01:41:02 +03:00
|
|
|
|
2019-06-10 17:51:41 +03:00
|
|
|
* [Bazel](https://bazel.build/) or [CMake](https://cmake.org/). NOTE: Bazel is
|
|
|
|
the build system that googletest is using internally and tests against.
|
|
|
|
CMake is community-supported.
|
2015-08-26 00:56:57 +03:00
|
|
|
|
2019-06-10 17:51:41 +03:00
|
|
|
* a C++11-standard-compliant compiler
|
2015-08-26 00:56:57 +03:00
|
|
|
|
2017-12-12 03:33:27 +03:00
|
|
|
## Contributing change
|
2015-08-26 00:56:57 +03:00
|
|
|
|
2019-06-12 18:18:40 +03:00
|
|
|
Please read the [`CONTRIBUTING.md`](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!
|