Commit 757d39a7 authored by Abseil Team's avatar Abseil Team Committed by vslashg
Browse files

Googletest export

Make it clearer that users should _not_ write their own main functions.

PiperOrigin-RevId: 277079721
parent b5fb5ba0
...@@ -478,7 +478,13 @@ If a fatal failure happens the subsequent steps will be skipped. ...@@ -478,7 +478,13 @@ If a fatal failure happens the subsequent steps will be skipped.
## Writing the main() Function ## Writing the main() Function
Write your own main() function, which should return the value of Most users should _not_ need to write their own `main` function and instead link
with `gtest_main` (as opposed to with `gtest`), which defines a suitable entry
point. See the end of this section for details. The remainder of this section
should only apply when you need to do something custom before the tests run that
cannot be expressed within the framework of fixtures and test suites.
If you write your own `main` function, it should return the value of
`RUN_ALL_TESTS()`. `RUN_ALL_TESTS()`.
You can start from this boilerplate: You can start from this boilerplate:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment