@@ -38,7 +38,7 @@ class TestClassSharedData
3838 , m_logged_line(0 )
3939 , m_total_checks(0 )
4040 , m_total_not_tested(0 )
41- , m_total_failed_tests (0 )
41+ , m_total_failed_checks (0 )
4242 , m_total_leaked_tests(0 )
4343 , m_total_functions_tested(0 )
4444 , m_total_timed_functions(0 )
@@ -155,19 +155,19 @@ class TestClassSharedData
155155 ++m_total_not_tested;
156156 }
157157
158- SizeType GetTotalFailedTests () const throw()
158+ SizeType GetTotalFailedChecks () const throw()
159159 {
160- return m_total_failed_tests ;
160+ return m_total_failed_checks ;
161161 }
162162
163- void SetTotalFailedTests (SizeType total_failed_tests ) throw()
163+ void SetTotalFailedTests (SizeType total_failed_checks ) throw()
164164 {
165- m_total_failed_tests = total_failed_tests ;
165+ m_total_failed_checks = total_failed_checks ;
166166 }
167167
168- void IncTotalFailedTests ()
168+ void IncTotalFailedChecks ()
169169 {
170- ++m_total_failed_tests ;
170+ ++m_total_failed_checks ;
171171 }
172172
173173 SizeType GetTotalLeakedTests () const throw()
@@ -286,7 +286,7 @@ class TestClassSharedData
286286 // Counts for all tests.
287287 SizeType m_total_checks;
288288 SizeType m_total_not_tested;
289- SizeType m_total_failed_tests ;
289+ SizeType m_total_failed_checks ;
290290 SizeType m_total_leaked_tests;
291291 SizeType m_total_functions_tested;
292292 SizeType m_total_timed_functions;
0 commit comments