summaryrefslogtreecommitdiff
path: root/googletest/samples
Commit message (Collapse)AuthorAgeFilesLines
* Running clang-format over all of GoogleTestAbseil Team2022-03-1516-84/+47
| | | | | | | | | | | | | | | | A few tests are examining code locations and looking af the resulting line numbers to verify that GoogleTest shows those to users correctly. Some of those locations change when clang-format is run. For those locations, I've wrapped portions in: // clang-format off ... // clang-format on There may be other locations that are currently not tickled by running clang-format. PiperOrigin-RevId: 434844712 Change-Id: I3a9f0a6f39eff741c576b6de389bef9b1d11139d
* Finish some missed pieces of the TestCase to TestSuite MigrationDerek Mauro2022-01-281-4/+4
| | | | | PiperOrigin-RevId: 424864779 Change-Id: Iac5cafa3568f5fe41c85c52d28f7d61845f76868
* Googletest exportAbseil Team2021-02-185-16/+15
| | | | | | Make include guards conform with https://google.github.io/styleguide/cppguide.html#The__define_Guard, attempt #2 PiperOrigin-RevId: 357056902
* Googletest exportAbseil Team2021-02-115-15/+16
| | | | | | Revert include guard fix PiperOrigin-RevId: 356588893
* Googletest exportAbseil Team2021-02-115-16/+15
| | | | | | Make include guards conform with https://google.github.io/styleguide/cppguide.html#The__define_Guard PiperOrigin-RevId: 355882793
* Googletest exportAbseil Team2021-02-051-7/+0
| | | | | | Remove uses of GTEST_HAS_TYPED_TEST_P and GTEST_HAS_TYPED_TEST. PiperOrigin-RevId: 353935996
* Googletest exportAbseil Team2020-02-111-3/+3
| | | | | | | | Refactor function GetNextPrime so that the loop precondition is checked before loop instead of during every loop run. Also by removing the loop condition, it shows that the only exit from the loop is the return statement. PiperOrigin-RevId: 293932783
* restore mistakenly removed iffs in their explicit formKrystian Kuzniarek2019-08-203-3/+3
| | | | | Due to confusion arisen from "iff" standing for "if and only if", this commit uses the latter.
* Googletest exportmisterg2019-08-011-4/+4
| | | | | | Internal Change PiperOrigin-RevId: 260939845
* fix typosKrystian Kuzniarek2019-07-303-3/+3
|
* Googletest exportmisterg2019-02-041-2/+2
| | | | | | Mark legacy _TEST_CASE_ macros as deprecated PiperOrigin-RevId: 232303251
* Googletest exportmisterg2019-01-143-12/+11
| | | | | | Change remaining samples to use new Test Suite API PiperOrigin-RevId: 229231566
* Googletest exportAbseil Team2018-12-038-25/+25
| | | | | | Applied fixes for ClangTidy modernize-use-override and modernize-use-using. PiperOrigin-RevId: 223800219
* Unconditionally use std::tuple.Abseil Team2018-10-091-23/+4
| | | | | | Remove all mention of TR1 tuple and our own implementation of tuple. PiperOrigin-RevId: 216395043
* Apply clang-tidy modernize-use-nullptr to googletest.Abseil Team2018-10-059-36/+35
| | | | | | | | | | | 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
* googletest exportmisterg2018-08-203-0/+18
| | | | | | - 209457486 Import of OSS PR, https://github.com/google/googletest/pu... by misterg <misterg@google.com> PiperOrigin-RevId: 209457486
* Comments changes, no functionality changesGennadiy Civil2018-08-1418-41/+9
|
* Small cleanups, mergeGennadiy Civil2018-01-082-2/+5
|
* OSS Sync, cl 163329677misterg2018-01-021-2/+6
|
* Merge branch 'master' into hethi/issue-360-remove-GTEST_HAS_PARAM_TESTSHerbert Thielen2017-09-241-1/+0
|\
| * remove unused TestCase importHerbert Thielen2017-08-291-1/+0
| |
* | remove GTEST_HAS_PARAM_TESTSHerbert Thielen2017-09-041-12/+0
|/ | | | | | | | As mentioned in issue #360: "Now that all the platforms gtest supports work with value-parameterized tests, we should remove the uses of the GTEST_HAS_PARAM_TESTS macro from the codebase everywhere." https://github.com/google/googletest/issues/360
* Merge pull request #1191 from gennadiycivil/masterGennadiy Civil2017-08-1010-28/+28
|\ | | | | Adding Bazel build to googletest (initial version )
| * Initial Revision, review 164634031misterg2017-08-101-1/+1
| |
| * Samples changes upstreamingmisterg2017-08-072-2/+2
| |
| * Samples changes upstreamingmisterg2017-08-079-18/+15
| |
| * WIPmisterg2017-08-0110-28/+31
| |
* | fix small typo in commentHerbert Thielen2017-08-051-1/+1
| |
* | Fixed some typosvpfautz2017-02-261-1/+1
|/
* Move everything in googletest into googletest/googletestBilly Donahue2015-08-2518-0/+2134