#include <gtest-internal-inl.h>
Definition at line 155 of file gtest-internal-inl.h.
◆ GTestFlagSaver()
testing::internal::GTestFlagSaver::GTestFlagSaver |
( |
| ) |
|
|
inline |
Definition at line 158 of file gtest-internal-inl.h.
158 {
159 also_run_disabled_tests_ =
GTEST_FLAG(also_run_disabled_tests);
160 break_on_failure_ =
GTEST_FLAG(break_on_failure);
161 catch_exceptions_ =
GTEST_FLAG(catch_exceptions);
163 death_test_style_ =
GTEST_FLAG(death_test_style);
164 death_test_use_fork_ =
GTEST_FLAG(death_test_use_fork);
166 internal_run_death_test_ =
GTEST_FLAG(internal_run_death_test);
174 stack_trace_depth_ =
GTEST_FLAG(stack_trace_depth);
175 stream_result_to_ =
GTEST_FLAG(stream_result_to);
176 throw_on_failure_ =
GTEST_FLAG(throw_on_failure);
177 }
◆ ~GTestFlagSaver()
testing::internal::GTestFlagSaver::~GTestFlagSaver |
( |
| ) |
|
|
inline |
Definition at line 180 of file gtest-internal-inl.h.
180 {
181 GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_;
182 GTEST_FLAG(break_on_failure) = break_on_failure_;
183 GTEST_FLAG(catch_exceptions) = catch_exceptions_;
185 GTEST_FLAG(death_test_style) = death_test_style_;
186 GTEST_FLAG(death_test_use_fork) = death_test_use_fork_;
188 GTEST_FLAG(internal_run_death_test) = internal_run_death_test_;
196 GTEST_FLAG(stack_trace_depth) = stack_trace_depth_;
197 GTEST_FLAG(stream_result_to) = stream_result_to_;
198 GTEST_FLAG(throw_on_failure) = throw_on_failure_;
199 }
The documentation for this class was generated from the following file: