summaryrefslogtreecommitdiffstats
path: root/googletest/test/gtest_assert_by_exception_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* Running clang-format over all of GoogleTestAbseil Team2022-03-151-14/+10
| | | | | | | | | | | | | | | | 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
* Googletest exportmisterg2019-01-021-1/+0
| | | | | | Internal Change PiperOrigin-RevId: 227575279
* Apply clang-tidy modernize-use-nullptr to googletest.Abseil Team2018-10-051-2/+1
| | | | | | | | | | | 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
* Comments changes, no functionality changes. Gennadiy Civil2018-08-141-1/+1
|
* Comments changes, no functionality changesrefs/pull/1740/headGennadiy Civil2018-08-141-2/+1
|
* Add ability to throw from ASSERTAlexey Sokolov2018-02-081-0/+119
while not losing benefits of EXPECT, and not killing the whole test, as with --gtest_throw_on_failure. 183822976