Home | History | Annotate | Download | only in gtest

Lines Matching defs:part

133   // The c'tor sets this object as the test part result reporter used
143 // The d'tor restores the previous test part result reporter.
191 // being part of the failure message.
248 // being part of the failure message.
399 // Indicates that this translation unit is part of Google Test's
445 // part of Google Test's implementation; otherwise it's undefined.
448 # error "gtest-internal-inl.h is part of Google Test's internal implementation."
850 // This string is inserted in place of stack frames that are part of
873 // This is the default global test part result reporter used in UnitTestImpl.
879 // Implements the TestPartResultReporterInterface. Reports the test part
889 // This is the default per thread test part result reporter used in
896 // delegates to the current global test part result reporter of *unit_test_.
919 // test part result for the currently running test.
921 // Returns the global test part result reporter.
924 // Sets the global test part result reporter.
928 // Returns the test part result reporter for the current thread.
931 // Sets the test part result reporter for the current thread.
1229 // The default test part result reporters.
1234 // Points to (but doesn't own) the global test part result reporter.
1240 // Points to (but doesn't own) the per-thread test part result reporter.
2022 // The c'tor sets this object as the test part result reporter used by
2032 // The c'tor sets this object as the test part result reporter used by
2053 // The d'tor restores the test part result reporter used by Google Test
2064 // Increments the test part result count and remembers the result.
2090 // This predicate-formatter checks that 'results' contains a test part
2130 // test part results, what type of failure we expect, and what
2165 // Returns the global test part result reporter.
2172 // Sets the global test part result reporter.
2179 // Returns the test part result reporter for the current thread.
2185 // Sets the test part result reporter for the current thread.
3187 // Returns the i-th test part result among all the results. i can
3205 // Clears the test part results.
3210 // Adds a test part result to the list.
3339 // Returns true iff the test part fatally failed.
3349 // Returns true iff the test part non-fatally failed.
4020 // following statements add the test part result message to the Output
4268 // If the test part succeeded, we don't need to do anything.
4793 const TestPartResult& part = result.GetTestPartResult(i);
4794 if (part.failed()) {
4799 part.file_name(), part.line_number());
4800 const string summary = location + "\n" + part.summary();
4804 const string detail = location + "\n" + part.message();
6158 // part can be omitted.
6175 // When def_optional is true, it's OK to not have a "=value" part.
6564 // Indicates that this translation unit is part of Google Test's
7978 // Returns a copy of the FilePath with the directory part removed.
7980 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
7981 // the FilePath unmodified. If there is no file part ("just_a_dir/") it
8275 // Indicates that this translation unit is part of Google Test's
8753 // code as part of a regular standalone executable, which doesn't
9199 // Prints a wchar_t c as if it's part of a string literal, escaping it when
9214 // Prints a char c as if it's part of a string literal, escaping it when
9411 // Indicates that this translation unit is part of Google Test's