summaryrefslogtreecommitdiffstats
path: root/googlemock/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Googletest exportAbseil Team2019-01-022-6/+0
|/ | | | | | | | Remove the #ifs for old, unsupported and buggy compilers: * old versions of GCC & MSVC * Symbian PiperOrigin-RevId: 227116941
* Merge pull request #2000 from ciband:feat/add_support_platformioGennadiy Civil2018-12-141-0/+17
|\ | | | | | | PiperOrigin-RevId: 225552792
| * feat: Add initial support for PlatformIO and ArduinoChris Johnson2018-12-051-0/+16
| |
* | Googletest exportmisterg2018-12-131-1/+1
|/ | | | | | Internal Change PiperOrigin-RevId: 225231727
* Googletest exportAbseil Team2018-12-032-7/+7
| | | | | | Applied fixes for ClangTidy modernize-use-override and modernize-use-using. PiperOrigin-RevId: 223800219
* Googletest exportmisterg2018-11-201-1/+1
| | | | | | Internal Change PiperOrigin-RevId: 222123106
* Googletest exportdurandal2018-11-201-110/+0
| | | | | | Move the Matcher<T> interface to googletest so I can use it to extend death test regex matching in a subsequent change. PiperOrigin-RevId: 221675910
* Remove workarounds for unsupported MSVC versionsRobin Lindén2018-11-101-3/+3
|
* Merge pull request #1941 from barkovv:masterGennadiy Civil2018-10-291-2/+2
|\ | | | | | | PiperOrigin-RevId: 219134349
| * Replaced all NULLs with nullptr in googlemockrefs/pull/1941/headVadim Barkov2018-10-281-2/+2
| |
* | Googletest exportmisterg2018-10-291-1/+2
|/ | | | | | Remove linked_ptr and use std::shared_ptr instead PiperOrigin-RevId: 219129336
* Googletest exportAbseil Team2018-10-261-2/+1
| | | | | | Remove linked_ptr and use std::shared_ptr instead PiperOrigin-RevId: 218618184
* Googletest exportmisterg2018-10-261-1/+2
| | | | | | Remove linked_ptr and use std::shared_ptr instead PiperOrigin-RevId: 218571466
* Merge branch 'isnice' of https://github.com/BrukerJWD/googletest into isniceJonathan Wendeborn2018-10-167-236/+414
|\
| * Merge branch 'master' into isniceBrukerJWD2018-10-167-236/+414
| |\
| | * Apply clang-tidy modernize-use-nullptr to googletest.Abseil Team2018-10-052-28/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | * more comments changesrefs/pull/1741/headGennadiy Civil2018-08-141-1/+1
| | |
| | * more comments changesGennadiy Civil2018-08-142-2/+2
| | |
| | * Comments changes, no functionality changesrefs/pull/1740/headGennadiy Civil2018-08-147-14/+7
| | |
| | * Formatting changes,small cleanup, no functionality changesrefs/pull/1705/headGennadiy Civil2018-08-071-1/+2
| | |
| | * Updated broken and outdated URLsPiotr Kąkol2018-07-251-1/+1
| | |
| | * Mark new GetWithoutMatchers method as part of the exported API, to address ↵David Sunderland2018-04-191-1/+1
| | | | | | | | | | | | MSVC linker errors.
| | * Don't use generalized initializer list; is C++11 extension.David Sunderland2018-04-181-1/+1
| | |
| | * Clone of unsubmitted cr/176529515. Introduce parameterless expectations.David Sunderland2018-04-181-0/+2
| | |
| | * ...mergingrefs/pull/1561/headGennadiy Civil2018-04-111-1/+1
| | |
| | * mergingGennadiy Civil2018-04-101-7/+10
| | |
| | * mergeGennadiy Civil2018-04-102-11/+8
| | |\
| | | * Revert "gmock actions 2"refs/pull/1556/headGennadiy Civil2018-04-102-16/+1
| | | |
| | | * formattingGennadiy Civil2018-04-091-1/+1
| | | |
| | | * more msvcGennadiy Civil2018-04-091-16/+0
| | | |
| | | * msvc 14Gennadiy Civil2018-04-091-0/+16
| | | |
| | | * And also silence for MSVS14Gennadiy Civil2018-04-091-2/+2
| | | |
| | | * preproc syntax ( I can never remember it)Gennadiy Civil2018-04-091-5/+9
| | | |
| | | * syntaxGennadiy Civil2018-04-091-2/+2
| | | |
| | | * cont.Gennadiy Civil2018-04-091-2/+2
| | | |
| | | * continuedGennadiy Civil2018-04-091-1/+0
| | | |
| | * | RE-Doing the merge, this time with gcc on mac in the PR so I can catch ↵Gennadiy Civil2018-04-101-7/+10
| | |/ | | | | | | | | | errors before merging the PR
| | * more mcvs fixingGennadiy Civil2018-04-061-0/+12
| | |
| | * fixing MSVCGennadiy Civil2018-04-061-1/+1
| | |
| | * Merging gMock, 2Gennadiy Civil2018-04-051-42/+80
| | |
| | * merging gmock matchers 1Gennadiy Civil2018-04-041-6/+52
| | |
| | * merging, gmock -1Gennadiy Civil2018-03-221-35/+42
| | |
| | * merges-2Gennadiy Civil2018-03-052-4/+14
| | |
| | * gmock merging -2Gennadiy Civil2018-02-271-77/+119
| | |
| | * moving JoinAsTuple to internalGennadiy Civil2018-02-122-19/+19
| | |
| | * Pass the -Wmissing-declarations warning.David Benjamin2018-01-031-1/+1
| | | | | | | | | | | | | | | | | | This makes it easier to use GTest in projects that build with the -Wmissing-declarations warning. This fixes the warning in headers and source files, though not GTest's own tests as it is rather noisy there.
| | * Use gender-neutral pronouns in comments and docsrefs/pull/1275/headJonathan Wakely2017-09-272-3/+3
| | |
| | * Merge branch 'refs/heads/master' into flag-defaultAlyssa Wilk2017-08-281-1/+1
| | |\
| | | * Add function name to exception if there's no default actionMaurice Gilden2017-08-161-1/+1
| | | |
| | * | Handling invalid flag valuesAlyssa Wilk2017-08-161-1/+8
| | | |