- 30 Jul, 2019 1 commit
-
-
Krystian Kuzniarek authored
-
- 24 Apr, 2019 1 commit
-
-
Abseil Team authored
Add GTEST_FAIL_AT, an equivalent to ADD_FAILURE_AT but that spawns a fatal failure rather than a non-fatal, eg. the equivalent of an ASSERT* failure rather than an EXPECT* failure. PiperOrigin-RevId: 244746609
-
- 06 Apr, 2019 1 commit
-
-
Enji Cooper authored
Cast some values as their unsigned equivalents or `size_t` to match the parameter type used for the template object under test. Also, provide UInt32 equivalent delegate methods for some callers (with int-equivalents for backwards compatibility). This closes #2146. Signed-off-by:Enji Cooper <yaneurabeya@gmail.com>
-
- 01 Apr, 2019 1 commit
-
-
Abseil Team authored
Remove support for "global" ::string and ::wstring types. This support existed for legacy codebases that existed from before namespaces where a thing. It is no longer necessary. PiperOrigin-RevId: 241335738
-
- 21 Mar, 2019 1 commit
-
-
Abseil Team authored
Remove mention of unused type ProtocolMessage. PiperOrigin-RevId: 239242706
-
- 05 Mar, 2019 1 commit
-
-
Abseil Team authored
Fix emission of -Wzero-as-null-pointer-constant when comparing integers. The following code fails to compile: #pragma clang diagnostic error "-Wzero-as-null-pointer-constant" void foo() { EXPECT_EQ(0, 0); } This happens because gtest checks the first argument to EXPECT_EQ and ASSERT_EQ is a null pointer constant. The magic it does to do this causes the warning to be emitted. This patch removes that check. It replaces the explicit check with a Compare overload that can only be selected when 0 or nullptr is passed on the LHS with a pointer on the right. This patch does not suppress -Wzero-as-null-pointer-constant when users are actually using it as NULL. PiperOrigin-RevId: 236654634
-
- 11 Jan, 2019 1 commit
-
-
misterg authored
Change tests to use new Test Suite API PiperOrigin-RevId: 228908894
-
- 08 Jan, 2019 1 commit
-
-
misterg authored
Replace testing::internal::ImplicitlyConvertible with std::is_convertible Fixes #2054 PiperOrigin-RevId: 228334305
-
- 07 Jan, 2019 1 commit
-
-
Abseil Team authored
Fix GTEST_IS_NULL_LITERAL_ for types that have magic implicit conversions. PiperOrigin-RevId: 227879345
-
- 03 Jan, 2019 2 commits
- 02 Jan, 2019 2 commits
-
-
misterg authored
Internal Change PiperOrigin-RevId: 227575279
-
Abseil Team authored
Remove the #ifs for old, unsupported and buggy compilers: * old versions of GCC & MSVC * Symbian PiperOrigin-RevId: 227116941
-
- 20 Dec, 2018 1 commit
-
-
Abseil Team authored
Add public entry point testing::RegisterTest. PiperOrigin-RevId: 226350937
-
- 03 Dec, 2018 1 commit
-
-
Abseil Team authored
Applied fixes for ClangTidy modernize-use-override and modernize-use-using. PiperOrigin-RevId: 223800219
-
- 10 Nov, 2018 1 commit
-
-
Robin Lindén authored
-
- 28 Oct, 2018 1 commit
-
-
Vadim Barkov authored
-
- 22 Oct, 2018 1 commit
-
-
Abseil Team authored
Change ValuesArray to require much less template instantiation depth. PiperOrigin-RevId: 218170842
-
- 05 Oct, 2018 1 commit
-
-
Abseil Team authored
Now that googletest has moved to C++11, it should no longer use NULL or 0 for the null pointer. This patch converts all such usages to nullptr using clang-tidy. This prevents LLVM from issuing -Wzero-as-null-pointer-constant warnings. PiperOrigin-RevId: 215814400
-
- 25 Sep, 2018 3 commits
-
-
Abseil Team authored
Project import generated by Copybara. PiperOrigin-RevId: 214456152
-
misterg authored
Project import generated by Copybara. PiperOrigin-RevId: 214441835
-
Abseil Team authored
Project import generated by Copybara. Including recently accepted and merged PRs PiperOrigin-RevId: 213856848
-
- 23 Sep, 2018 6 commits
-
-
Gennadiy Civil authored
-
Gennadiy Civil authored
-
Jonny007-MKD authored
-
Jonny007-MKD authored
-
Jonny007-MKD authored
Shorten lines in unit tests
-
Jonny007-MKD authored
-
- 20 Sep, 2018 1 commit
-
-
Abseil Team authored
support printing std::reference_wrapper<T> in gUnit PiperOrigin-RevId: 213270392
-
- 18 Sep, 2018 1 commit
-
-
Matthieu Longo authored
-
- 14 Sep, 2018 2 commits
-
-
Jonny007-MKD authored
-
misterg authored
Removing checks for C++11 from unit tests PiperOrigin-RevId: 212990514
-
- 13 Sep, 2018 5 commits
-
-
misterg authored
Project import generated by Copybara. PiperOrigin-RevId: 212678005
-
misterg authored
Internal Change PiperOrigin-RevId: 212656679
-
Jonny007-MKD authored
-
Jonny007-MKD authored
-
Jonny007-MKD authored
-
- 12 Sep, 2018 1 commit
-
-
Georgi D. Sotirov authored
The unused attribute was removed with commit 3299a238 on 2018-02-23, but it currently breaks build of 1.8.1, because of -Werror GCC parameter as reported in issue #1825.
-
- 06 Sep, 2018 2 commits
-
-
Abseil Team authored
Make EXPECT_THROW print the actual exception type on the "threw the wrong exception type" case if the actual exception is a std::exception PiperOrigin-RevId: 211524592
-
Abseil Team authored
Make EXPECT_THROW print the actual exception type on the "threw the wrong exception type" case if the actual exception is a std::exception PiperOrigin-RevId: 211519873
-