aboutsummaryrefslogtreecommitdiffstats
path: root/include/gtest/gtest-printers.h
Commit message (Collapse)AuthorAgeFilesLines
* Move everything in googletest into googletest/googletestBilly Donahue2015-08-251-993/+0
|
* Introduce FormatForComparison to format values that are operands of ↵kosak2015-07-281-0/+97
| | | | comparison assertions (e.g. ASSERT_EQ).
* Add support for gtest custom printers.kosak2015-07-141-0/+5
|
* Push upstream to SVN.billydonahue2014-05-151-16/+6
|
* Suppress "Conditional expression is constant" warning on Visual Studio.kosak2014-01-291-0/+2
|
* Define specialization of PrintTo(...) for ::std::tuple.kosak2014-01-121-39/+83
|
* Improves gtest's failure messages. In particulars, char pointers andzhanyong.wan2012-06-071-15/+71
| | | | char arrays are not escapped properly.
* Fixes broken build on VC++ 7.1.vladlosev2011-06-131-1/+4
|
* Makes IsContainerTest compatible with Sun C++ and Visual Age C++, based on ↵zhanyong.wan2011-03-091-1/+2
| | | | Hady Zalek's report and experiment; also fixes a bug that causes it to think that a class named const_iterator is a container; also clarifies the Borland C++ compatibility fix in the comments based on Josh Kelley's suggestion.
* Fixes compatibility with Borland C++Builder. Original patch by Joshzhanyong.wan2011-03-051-6/+22
| | | | Kelley. Simplified by Zhanyong Wan.
* Indents preprocessor directives.zhanyong.wan2011-02-221-6/+6
|
* Renames some internal functions to avoid name clashes.vladlosev2011-01-291-6/+6
|
* Fixes compiler warning when built with -std=c++0x.vladlosev2010-10-221-1/+1
|
* Include gtest headers as user headers instead of system headers.zhanyong.wan2010-09-141-2/+2
|
* Makes gtest print enums as integers instead of hex dumps (by Zhanyong Wan); ↵zhanyong.wan2010-08-091-15/+41
| | | | improves the hex dump format (by Zhanyong Wan); gets rid of class TestInfoImpl (by Zhanyong Wan); adds exception handling (by Vlad Losev).
* Allows EXPECT_EQ to accept arguments that don't have operator << (by ↵zhanyong.wan2010-07-211-13/+34
| | | | | | | Zhanyong Wan). Allows a user to customize how the universal printer prints a pointer of a specific type by overloading << (by Zhanyong Wan). Works around a bug in Cymbian's C++ compiler (by Vlad Losev).
* Replaces UniversalPrinter<T>::Print(x, os) with UniversalPrint(x, os) as ↵vladlosev2010-05-131-5/+7
| | | | appropriate (by Zhanyong Wan).
* Moves the universal printer from gmock to gtest and refactors the cmake ↵zhanyong.wan2010-05-101-0/+730
script for reusing in gmock (by Vlad Losev).