summaryrefslogtreecommitdiffstats
path: root/docs/advanced.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-11-08 18:49:32 (GMT)
committerdinord <dino.radakovich@gmail.com>2021-11-09 15:24:14 (GMT)
commitaa486f165e982e82e2112d20a7561f64736d4b42 (patch)
tree272b810b443d62c1e41791ebb7d106785a6e1460 /docs/advanced.md
parentc3792825bfb11490a61caa088692be95944c1faf (diff)
downloadgoogletest-aa486f165e982e82e2112d20a7561f64736d4b42.zip
googletest-aa486f165e982e82e2112d20a7561f64736d4b42.tar.gz
googletest-aa486f165e982e82e2112d20a7561f64736d4b42.tar.bz2
Googletest export
Add missing InitGoogleTest line in "Registering tests" example code Copying the original code gives the following error message """ IMPORTANT NOTICE - DO NOT IGNORE: This test program did NOT call testing::InitGoogleTest() before calling RUN_ALL_TESTS(). This is INVALID. Soon Google Test will start to enforce the valid usage. Please fix it ASAP, or IT WILL START TO FAIL. """ PiperOrigin-RevId: 408385714
Diffstat (limited to 'docs/advanced.md')
-rw-r--r--docs/advanced.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/advanced.md b/docs/advanced.md
index 7114857..f2f8854 100644
--- a/docs/advanced.md
+++ b/docs/advanced.md
@@ -1597,6 +1597,7 @@ void RegisterMyTests(const std::vector<int>& values) {
}
...
int main(int argc, char** argv) {
+ testing::InitGoogleTest(&argc, argv);
std::vector<int> values_to_test = LoadValuesFromConfig();
RegisterMyTests(values_to_test);
...