- 31 Aug, 2018 8 commits
-
-
Gennadiy Civil authored
Googletest export
-
Gennadiy Civil authored
-
Gennadiy Civil authored
manual update golden lin
-
Gennadiy Civil authored
manual update, golden lin
-
misterg authored
Fix broken OSS windows build. PiperOrigin-RevId: 210969049
-
misterg authored
Silence MSVC warnings PiperOrigin-RevId: 210726964
-
Abseil Team authored
Fix the typed test names in the tests for customized typed test parameters. As required by googletest documentation, the names should not contain an underscore. PiperOrigin-RevId: 210678652
-
misterg authored
Internal Change PiperOrigin-RevId: 210594341
-
- 30 Aug, 2018 9 commits
-
-
Gennadiy Civil authored
Googletest export
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
Bring travil yml back to the master branch state
-
Gennadiy Civil authored
-
- 29 Aug, 2018 8 commits
-
-
Gennadiy Civil authored
Possibly related to travis env
-
Gennadiy Civil authored
Fix broken FAQ link in primer.md
-
Steven Santos Erenst authored
The current link pointed to a non existing section in the FAQ.
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
- 28 Aug, 2018 6 commits
-
-
Abseil Team authored
Fix line that was wrapping in the middle of a link This looks uglier, but has the advantage that the link is kept in one piece. PiperOrigin-RevId: 210537337
-
Abseil Team authored
Add the possibility of specifying the name in type parameterized tests. Similar to how the last parameter of INSTANTIATE_TEST_CASE_P allows to override the name for (non-type) parametrized tests, this adds the possibility of adding a parameter to INSTANTIATE_TYPED_TEST_CASE_P. The argument has to be a class, which contains a static templated function GetName<T>(int), returning the name for type T. PiperOrigin-RevId: 210532231
-
Abseil Team authored
Breaks Windows builds PiperOrigin-RevId: 210434120
-
Abseil Team authored
Fix Theta(N^2) memory usage of EXPECT_EQ(string) when the strings don't match. The underlying CalculateOptimalEdits() implementation used a simple dynamic-programming approach that always used N^2 memory and time. This meant that tests for equality of large strings were ticking time bombs: They'd work fine as long as the test passed, but as soon as the strings differed the test would OOM, which is very hard to debug. I switched it out for a Dijkstra search, which is still worst-case O(N^2), but in the usual case of mostly-matching strings, it is much closer to linear. PiperOrigin-RevId: 210405025
-
misterg authored
Code Cleanup PiperOrigin-RevId: 210393771
-
Gennadiy Civil authored
New Readme.md
-
- 27 Aug, 2018 6 commits
-
-
David Schuldenfrei authored
-
Gennadiy Civil authored
Use `$<INSTALL_PREFIX>` in `target_include_directories`
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
David Schuldenfrei authored
Closes #1658 Review and changes, mister@google.com PiperOrigin-RevId: 210374286
-
Abseil Team authored
This makes ResultOf more convenient to use. In particular, the matcher now accepts lambdas. PiperOrigin-RevId: 210118509
-
- 24 Aug, 2018 3 commits
-
-
Dakota Hawkins authored
To make sure packages are relocatable, use `$<INSTALL_PREFIX>` in `$<INSTALL_INTERFACE:...>` `target_include_directories`. `$<INSTALL_PREFIX>` was introduced in CMake 2.8.11, which is already being checked for locally. References: - https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#id19 - https://github.com/robotology/how-to-export-cpp-library/blob/claudio/headeronly/src/LibTemplateCMake/CMakeLists.txt#L42Signed-off-by:
Dakota Hawkins <dakotahawkins@gmail.com>
-
Gennadiy Civil authored
Fix #1764 Remove cmake code that leads to a configuration error
-
Will Vining authored
This step is no longer necessary. The configuration given in the googletest README.md is sufficient to bring in all the googlemock headers.
-