diff options
author | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-08-22 20:41:10 (GMT) |
---|---|---|
committer | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-09-23 17:16:31 (GMT) |
commit | 90a8ab70a1f604f35801569683450834f5e6ce3b (patch) | |
tree | a3ce4d7ab6459a9d95400070b1726c679f914f83 /googlemock/docs/cheat_sheet.md | |
parent | c96da8fea82ec30325a94b78645e8453bddd1dca (diff) | |
download | googletest-90a8ab70a1f604f35801569683450834f5e6ce3b.zip googletest-90a8ab70a1f604f35801569683450834f5e6ce3b.tar.gz googletest-90a8ab70a1f604f35801569683450834f5e6ce3b.tar.bz2 |
mention the existing support for wide strings in string matchersrefs/pull/2421/head
Diffstat (limited to 'googlemock/docs/cheat_sheet.md')
-rw-r--r-- | googlemock/docs/cheat_sheet.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index 850963a..1f7ed92 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -326,8 +326,8 @@ The `argument` can be either a C string or a C++ string object: `ContainsRegex()` and `MatchesRegex()` take ownership of the `RE` object. They use the regular expression syntax defined [here](../../googletest/docs/advanced.md#regular-expression-syntax). -`StrCaseEq()`, `StrCaseNe()`, `StrEq()`, and `StrNe()` work for wide strings as -well. +All of these matchers, except `ContainsRegex()` and `MatchesRegex()` work for +wide strings as well. #### Container Matchers |