https://github.com/arnobl/googletest-examples
https://github.com/arnobl/googletest-examples
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arnobl/googletest-examples
- Owner: arnobl
- Created: 2020-11-27T14:30:40.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-02T12:36:31.000Z (over 5 years ago)
- Last Synced: 2025-03-14T06:12:22.201Z (over 1 year ago)
- Language: C++
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
## Fedora
`sudo dnf install gtest-devel gmock-devel lcov`
## Ubuntu
`sudo apt install libgtest-dev libgmock-dev lcov`
# Layout
`gtest-example` contains C++ code and a `gtest` test suite.
`mock-example` contains C++ code and a `gtest` test suite that uses `gmock`. We use `lcov` to measure code coverage.