### Generic Build Instructions
#### Setup
To build GoogleTest and your tests that use it, you need to tell your build
system where to find its headers and source files. The exact way to do it
depends on which build system you use, and is usually straightforward.
### Build with CMake
GoogleTest comes with a CMake build script
([CMakeLists.txt](https://github.com/google/googletest/blob/main/CMakeLists.txt))
that can be used on a wide range of platforms ("C" stands for cross-platform.).
If you don't have CMake installed already, you can download it for free from
<https://cmake.org/>.
CMake works by generating native makefiles or build projects that can be used in
the compiler environment of your choice. You can either build GoogleTest as a
standalone project or it can be incorporated into an existing CMake build for
another project.
#### Standalone CMake Project
When building GoogleTest as a standalone project, the typical workflow starts
with
```
git clone https://github.com/google/googletest.git -b v1.15.2
cd googletest # Main directory of the cloned repository.
mkdir build # Create a directory to hold the build output.
cd build
cmake .. # Generate native build scripts for GoogleTest.
```
The above command also includes GoogleMock by default. And so, if you want to
build only GoogleTest, you should replace the last command with
```
cmake .. -DBUILD_GMOCK=OFF
```
If you are on a \*nix system, you should now see a Makefile in the current
directory. Just type `make` to build GoogleTest. And then you can simply install
GoogleTest if you are a system administrator.
```
make
sudo make install # Install in /usr/local/ by default
```
If you use Windows and have Visual Studio installed, a `gtest.sln` file and
several `.vcproj` files will be created. You can then build them using Visual
Studio.
On Mac OS X with Xcode installed, a `.xcodeproj` file will be generated.
#### Incorporating Into An Existing CMake Project
If you want to use GoogleTest in a project which already uses CMake, the easiest
way is to get installed libraries and headers.
* Import GoogleTest by using `find_package` (or `pkg_check_modules`). For
example, if `find_package(GTest CONFIG REQUIRED)` succeeds, you can use the
libraries as `GTest::gtest`, `GTest::gmock`.
And a more robust and flexible approach is to build GoogleTest as part of that
project directly. This is done by making the GoogleTest source code available to
the main build and adding it using CMake's `add_subdirectory()` command. This
has the significant advantage that the same compiler and linker settings are
used between GoogleTest and the rest of your project, so issues associated with
using incompatible libraries (eg debug/release), etc. are avoided. This is
particularly useful on Windows. Making GoogleTest's source code available to the
main build can be done a few different ways:
* Download the GoogleTest source code manually and place it at a known
location. This is the least flexible approach and can make it more difficult
to use with continuous integration systems, etc.
* Embed the GoogleTest source code as a direct copy in the main project's
source tree. This is often the simplest approach, but is also the hardest to
keep up to date. Some organizations may not permit this method.
* Add GoogleTest as a git submodule or equivalent. This may not always be
possible or appropriate. Git submodules, for example, have their own set of
advantages and drawbacks.
* Use CMake to download GoogleTest as part of the build's configure step. This
approach doesn't have the limitations of the other methods.
The last of the above methods is implemented with a small piece of CMake code
that downloads and pulls the GoogleTest code into the main build.
Just add to your `CMakeLists.txt`:
```cmake
include(FetchContent)
FetchContent_Declare(
googletest
# Specify the commit you depend on and update it regularly.
URL https://github.com/google/googletest/archive/5376968f6948923e2411081fd9372e71a59d8e77.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
# Now simply link against gtest or gtest_main as needed. Eg
add_executable(example example.cpp)
target_link_libraries(example gtest_main)
add_test(NAME example_test COMMAND example)
```
Note that this approach requires CMake 3.14 or later due to its use of the
`FetchContent_MakeAvailable()` command.
##### Visual Studio Dynamic vs Static Runtimes
By default, new Visual Studio projects link the C runtimes dynamically but
GoogleTest links them statically. This will generate an error that looks
something like the following: gtest.lib(gtest-all.obj) : error LNK2038: mismatch
detected for 'RuntimeLibrary': value 'MTd_StaticDebug' doesn't match value
'MDd_DynamicDebug' in main.obj
GoogleTest already has a CMake option for this: `gtest_force_shared_crt`
Enabling this option will make gtest link the runtimes dynamically too, and
match the project in which it is included.
#### C++ Standard Version
An environment that supports C++14 is required in order to successfully build
GoogleTest. One way to ensure this is to specify the standard in the top-level
project, for example by using the `set(CMAKE_CXX_STANDARD 14)` command along
with `set(CMAKE_CXX_STANDARD_REQUIRED ON)`. If this is not feasible, for example
in a C project using GoogleTest for validation, then it can be specified by
adding it to the options for cmake via the`-DCMAKE_CXX_FLAGS` option.
### Tweaking GoogleTest
GoogleTest can be used in diverse environments. The default configuration may
not work (or may not work well) out of the box in some environments. However,
you can easily tweak GoogleTest by defining control macros on the compiler
command line. Generally, these macros are named like `GTEST_XYZ` and you define
them to either 1 or 0 to enable or disable a certain feature.
We list the most frequently used macros below. For a complete list, see file
[include/gtest/internal/gtest-port.h](https://github.com/google/googletest/blob/main/googletest/include/gtest/internal/gtest-port.h).
### Multi-threaded Tests
GoogleTest is thread-safe where the pthread library is available. After
`#include <gtest/gtest.h>`, you can check the
`GTEST_IS_THREADSAFE` macro to see whether this is the case (yes if the macro is
`#defined` to 1, no if it's undefined.).
If GoogleTest doesn't correctly detect whether pthread is available in your
environment, you can force it with
```
-DGTEST_HAS_PTHREAD=1
```
or
```
-DGTEST_HAS_PTHREAD=0
```
When GoogleTest uses pthread, you may need to add flags to your compiler and/or
linker to select the pthread library, or you'll get link errors. If you use the
CMake script, this is taken care of for you. If you use your own build script,
you'll need to read your compiler and linker's manual to figure out what flags
to add.
### As a Shared Library (DLL)
GoogleTest is compact, so most users can build and link it as a static library
for the simplicity. You can choose to use GoogleTest as a shared library (known
as a DLL on Windows) if you prefer.
To compile *gtest* as a shared library, add
```
-DGTEST_CREATE_SHARED_LIBRARY=1
```
to the compiler flags. You'll also need to tell the linker to produce a shared
library instead - consult your linker's manual for how to do it.
To compile your *tests* that use the gtest shared library, add
```
-DGTEST_LINKED_AS_SHARED_LIBRARY=1
```
to the compiler flags.
Note: while the above steps aren't technically necessary today when using some
compilers (e.g. GCC), they may become necessary in the future, if we decide to
improve the speed of loading the library (see
<https://gcc.gnu.org/wiki/Visibility> for details). Therefore you are
recommended to always add the above flags when using GoogleTest as a shared
library. Otherwise a future release of GoogleTest
没有合适的资源?快使用搜索试试~ 我知道了~
GoogleTest-Google 测试和模拟框架.zip
共249个文件
cc:106个
h:49个
py:30个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 4 浏览量
2024-12-02
19:32:01
上传
评论
收藏 1.03MB ZIP 举报
温馨提示
GoogleTest——Google 测试和模拟框架谷歌测试公告住在 HeadGoogleTest 现在遵循 Abseil Live at Head 理念。我们建议 尽可能频繁地更新到分支中的最新提交main。我们确实会偶尔发布带有标签的语义版本 v${major}.${minor}.${patch}(例如v1.15.2)。文档更新我们的文档现已发布在 GitHub Pages 上,网址为 https://google.github.io/googletest/。我们建议在 GitHub Pages 上浏览文档,而不是直接在存储库中浏览。版本 1.15.2版本 1.15.2现已推出。1.15.x 分支至少需要 C++14。持续集成我们使用 Google 的内部系统进行持续集成。即将推出我们正计划依赖 Abseil。欢迎使用GoogleTest,Google 的 C++ 测试框架!此存储库是以前独立的 GoogleTest 和 GoogleMock 项目的合并。这两个项目关系密切,因此将它们一起维护和发布是合理的。入门请参阅Goo
资源推荐
资源详情
资源评论
收起资源包目录
GoogleTest-Google 测试和模拟框架.zip (249个子文件)
windows-presubmit.bat 2KB
BUILD.bazel 15KB
BUILD.bazel 7KB
BUILD.bazel 3KB
MODULE.bazel 2KB
googletest_deps.bzl 1KB
fake_fuchsia_sdk.bzl 1KB
WORKSPACE.bzlmod 2KB
gtest_unittest.cc 261KB
gtest.cc 256KB
gmock-matchers-containers_test.cc 100KB
gmock-matchers-comparisons_test.cc 77KB
gmock-spec-builders_test.cc 73KB
gmock-actions_test.cc 72KB
gtest_pred_impl_unittest.cc 68KB
googletest-printers-test.cc 65KB
gmock-matchers-misc_test.cc 62KB
gtest-death-test.cc 61KB
gmock-more-actions_test.cc 54KB
gmock-matchers-arithmetic_test.cc 53KB
gtest-port.cc 48KB
googletest-death-test-test.cc 47KB
googletest-param-test-test.cc 42KB
googletest-port-test.cc 40KB
googletest-output-test_.cc 36KB
gmock-function-mocker_test.cc 34KB
gmock-spec-builders.cc 29KB
gmock-internal-utils_test.cc 28KB
googletest-listener-test.cc 24KB
googletest-filepath-test.cc 23KB
gmock-matchers.cc 18KB
gtest-printers.cc 18KB
gtest-filepath.cc 15KB
gmock-nice-strict_test.cc 15KB
gtest-typed-test_test.cc 14KB
gtest-unittest-api_test.cc 13KB
gmock-cardinalities_test.cc 12KB
gmock-internal-utils.cc 9KB
gtest_stress_test.cc 9KB
sample6_unittest.cc 9KB
gmock-pp-string_test.cc 9KB
gmock.cc 8KB
gmock_output_test_.cc 8KB
googletest-catch-exceptions-test_.cc 8KB
googletest-options-test.cc 8KB
googletest-test-part-test.cc 8KB
gtest_repeat_test.cc 7KB
gmock_stress_test.cc 7KB
sample5_unittest.cc 6KB
gtest_environment_test.cc 6KB
gtest_xml_output_unittest_.cc 6KB
gmock_test.cc 6KB
sample8_unittest.cc 6KB
sample9_unittest.cc 6KB
googletest-message-test.cc 6KB
googletest-failfast-unittest_.cc 5KB
sample3_unittest.cc 5KB
gmock-cardinalities.cc 5KB
sample1_unittest.cc 5KB
sample10_unittest.cc 5KB
googletest-list-tests-unittest_.cc 5KB
sample7_unittest.cc 5KB
gtest_premature_exit_test.cc 4KB
gtest-test-part.cc 4KB
sample2_unittest.cc 4KB
gtest_test_macro_stack_footprint_test.cc 4KB
gtest_assert_by_exception_test.cc 4KB
gtest-typed-test.cc 4KB
gtest-matchers.cc 4KB
googletest-env-var-test_.cc 4KB
googletest-death-test_ex_test.cc 3KB
gmock-pp_test.cc 3KB
googletest-filter-unittest_.cc 3KB
gtest_throw_on_failure_ex_test.cc 3KB
gmock_ex_test.cc 3KB
gmock_leak_test_.cc 3KB
googletest-break-on-failure-unittest_.cc 3KB
gtest_list_output_unittest_.cc 3KB
googletest-shuffle-test_.cc 3KB
gmock_main.cc 3KB
googletest-throw-on-failure-test_.cc 3KB
gtest-assertion-result.cc 3KB
gtest_dirs_test.cc 3KB
gtest_xml_outfile2_test_.cc 3KB
googletest-param-test2-test.cc 3KB
googletest-color-test_.cc 2KB
gmock_all_test.cc 2KB
sample1.cc 2KB
gtest_main.cc 2KB
gtest_no_test_unittest.cc 2KB
googletest-global-environment-unittest_.cc 2KB
sample2.cc 2KB
gtest_all_test.cc 2KB
gtest-all.cc 2KB
gtest_sole_header_test.cc 2KB
gtest_prod_test.cc 2KB
googletest-param-test-invalid-name2-test_.cc 2KB
gmock-all.cc 2KB
sample4.cc 2KB
gtest_help_test_.cc 2KB
共 249 条
- 1
- 2
- 3
资源评论
徐浪老师
- 粉丝: 8288
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- PostgreSQL数据库内核分析-逻辑备份与恢复机制详解
- pyinstxtractor-ng 是一个用于提取 Pyinstaller 生成的可执行文件内容的工具 支持 Linux ELF 和 Windows PE 可执行文
- MODBUS-TCP应用手册-PROFINET 转MODBUS版-网关ANYBUS-AB9007-B
- 具有乐观锁定功能的 Redis 支持的 PHP 会话处理程序.zip
- PostgreSQL 12.1 源码安装详解
- Unity ASE插件下载+附带安装说明
- 腾讯公司TDSQL-10.3.17.3.0数据库下载
- 使用redis配置tomcat共享会话.zip
- 西门子编程FB58温度控制PID说明
- 完结17章AI助手Copilot辅助Go+Flutter打造全栈式在线教育系统
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功