1. 15 Apr, 2021 1 commit
  2. 13 Apr, 2021 1 commit
    • Abseil Team's avatar
      Googletest export · 486a4a6b
      Abseil Team authored
      Adds a warning about anonymous namespaces in relation to private testing.
      
      PiperOrigin-RevId: 367730808
      486a4a6b
  3. 08 Apr, 2021 3 commits
    • Abseil Team's avatar
      Googletest export · 6a5eb807
      Abseil Team authored
      Update the example for Notify to use a lambda.
      It is much less boilerplate and easier to remember.
      
      PiperOrigin-RevId: 367284222
      6a5eb807
    • Abseil Team's avatar
      Googletest export · 8a65bc03
      Abseil Team authored
      Docs: Add examples for `FieldsAre` matcher
      PiperOrigin-RevId: 367263024
      8a65bc03
    • Abseil Team's avatar
      Googletest export · 54689b19
      Abseil Team authored
      Docs: Clarifying matcher in `Pointwise` and `UnorderedPointwise`
      PiperOrigin-RevId: 367059198
      54689b19
  4. 25 Mar, 2021 8 commits
  5. 10 Mar, 2021 1 commit
    • Abseil Team's avatar
      Googletest export · e8512bc3
      Abseil Team authored
      Add missing period and use "that" in restrictive clause.
      
      PiperOrigin-RevId: 361941663
      e8512bc3
  6. 04 Mar, 2021 2 commits
    • Abseil Team's avatar
      Googletest export · 32983d21
      Abseil Team authored
      Fix enum names in a value-parameterized test example.
      
      PiperOrigin-RevId: 360559723
      32983d21
    • Abseil Team's avatar
      Googletest export · de41f822
      Abseil Team authored
      Add Supported Platforms page to docs
      
      PiperOrigin-RevId: 360307129
      de41f822
  7. 26 Feb, 2021 1 commit
  8. 22 Feb, 2021 1 commit
    • Abseil Team's avatar
      Googletest export · 1de637fb
      Abseil Team authored
      Remove anchors from page titles in docs
      
      PiperOrigin-RevId: 358474917
      1de637fb
  9. 19 Feb, 2021 1 commit
  10. 18 Feb, 2021 4 commits
    • Abseil Team's avatar
      Googletest export · 7fb047bc
      Abseil Team authored
      Explain how to wrap matchers.
      
      PiperOrigin-RevId: 357901293
      7fb047bc
    • Abseil Team's avatar
      Googletest export · bc32a874
      Abseil Team authored
      Update the custom name example to not use underscores.
      
      The NOTE a few blocks above specifically calls out that test names should not contain undersccores, so probably the example should not suggest using underscores.
      
      PiperOrigin-RevId: 357204578
      bc32a874
    • Abseil Team's avatar
      Googletest export · 1a5a78b9
      Abseil Team authored
      Add files for GitHub Pages
      
      PiperOrigin-RevId: 357096486
      1a5a78b9
    • Abseil Team's avatar
      Googletest export · e935e6c3
      Abseil Team authored
      Internal change
      
      PiperOrigin-RevId: 356867746
      e935e6c3
  11. 11 Feb, 2021 1 commit
  12. 05 Feb, 2021 6 commits
    • Abseil Team's avatar
      Googletest export · f3ef7e17
      Abseil Team authored
      Fix table formatting in cookbook
      
      PiperOrigin-RevId: 355659722
      f3ef7e17
    • Abseil Team's avatar
      Googletest export · b6323d21
      Abseil Team authored
      Add a note to recommend against using `Property()` for functions that the test author does not own.
      
      PiperOrigin-RevId: 355295183
      b6323d21
    • Abseil Team's avatar
      Googletest export · aea7f60b
      Abseil Team authored
      Update description of `Property()` matcher
      
      PiperOrigin-RevId: 355253498
      aea7f60b
    • Abseil Team's avatar
      Googletest export · 8599d312
      Abseil Team authored
      Fix terminal output formatting in advanced guide
      
      PiperOrigin-RevId: 355233178
      8599d312
    • Abseil Team's avatar
      Googletest export · 8c269618
      Abseil Team authored
      Stop referring to Google's internal libraries in FAQ
      
      PiperOrigin-RevId: 355060895
      8c269618
    • Abseil Team's avatar
      Googletest export · 72611884
      Abseil Team authored
      Document the fact that MatchAndExplain(T, MatchResultListener*) is supported.
      
      PiperOrigin-RevId: 354172275
      72611884
  13. 26 Jan, 2021 6 commits
    • Abseil Team's avatar
      Googletest export · 273f8cb0
      Abseil Team authored
      Add missing `is_gtest_matcher` to the polymorphic matcher example.
      
      PiperOrigin-RevId: 353881883
      273f8cb0
    • Abseil Team's avatar
      Googletest export · 8a761867
      Abseil Team authored
      Delete internal tags from docs
      
      PiperOrigin-RevId: 353769887
      8a761867
    • Abseil Team's avatar
      Googletest export · e3827e4e
      Abseil Team authored
      Updates the gMock cheat sheet to include the versions of the Field and Property matchers which take an additional name parameter.
      
      PiperOrigin-RevId: 353273968
      e3827e4e
    • Abseil Team's avatar
      Googletest export · a1dde9b1
      Abseil Team authored
      | `IsEmpty()`             | `argument` is an empty string.                     |
      
      PiperOrigin-RevId: 352880252
      a1dde9b1
    • ofats's avatar
      Googletest export · 59dea67b
      ofats authored
      Remove scripts for code generating together with related files.
      
      PiperOrigin-RevId: 352805926
      59dea67b
    • Abseil Team's avatar
      Googletest export · 14098f20
      Abseil Team authored
      Merge CONTRIBUTORS, delete LICENSEs in googletest/ and googlemock/
      
      PiperOrigin-RevId: 352558822
      14098f20
  14. 15 Jan, 2021 3 commits
  15. 14 Jan, 2021 1 commit
    • Abseil Team's avatar
      Googletest export · c13c27a5
      Abseil Team authored
      Change Matcher<T> to allow binding an implementation by value directly:
       - Drop the requirement of MatcherInterface. Doing manual type erasure avoid
         extra layers in many cases.
       - Avoid the adaptor for `MatcherInterface<T>` and `MatcherInterface<const T&>` mismatch.
       - Use a small object optimization when possible. This makes things like
         `_` and `Eq(1)` really cheap and do not require memory allocations.
       - Migrate some matchers to the new model to speed them up and to test the new framework. More matchers to come in future changes.
      
      PiperOrigin-RevId: 350580998
      c13c27a5