1. 12 Dec, 2018 5 commits
  2. 11 Dec, 2018 2 commits
    • Googletest export · 6cbd3753
      misterg authored
      rollback of 224929783
      
      PiperOrigin-RevId: 225008559
    • Googletest export · 06bb8d4d
      Abseil Team authored
      The gmock matchers have a concept of MatchAndExpain; where the details of the
      matching are written to a "result listener". A matcher can avoid creating
      expensive debug info by checking result_listener->IsInterested(); but,
      unfortunately, the default matcher code (called from EXPECT_THAT) is always
      "interested".
      
      This change implements EXPECT_THAT matching to first run the matcher in a "not
      interested" mode; and then run it a second time ("interested") only if the
      match fails.
      
      PiperOrigin-RevId: 224929783
  3. 10 Dec, 2018 1 commit
  4. 05 Dec, 2018 1 commit
  5. 04 Dec, 2018 3 commits
  6. 03 Dec, 2018 8 commits
  7. 29 Nov, 2018 2 commits
    • Googletest export · 8fbf9d16
      durandal authored
      Fix: remove two added testcases that depend on gmock; I'll put them back later in a way that doesn't break the build.
      PiperOrigin-RevId: 223227562
    • Googletest export · b22d2366
      durandal authored
      Accept gmock matchers in EXPECT_EXIT and friends to allow matches other than simple regex matches on death output.
      
      PiperOrigin-RevId: 223035409
  8. 26 Nov, 2018 7 commits
  9. 22 Nov, 2018 1 commit
  10. 20 Nov, 2018 10 commits
    • Update build badge · 3cf8f514
      Gennadiy Civil authored
    • Googletest export · a3013cce
      misterg authored
      Fix broken OSS build
      
      PiperOrigin-RevId: 222244158
    • Googletest export · f7779eb3
      Abseil Team authored
      Remove unintended dependency.
      
      PiperOrigin-RevId: 222243874
    • Googletest export · 64368e05
      Abseil Team authored
      Remove redundant Base/Derived types.
      
      PiperOrigin-RevId: 222243634
    • Googletest export · bb7c0ecb
      misterg authored
      Silence C4100 msvc warning
      
      PiperOrigin-RevId: 222242329
    • Googletest export · b4926660
      misterg authored
      Internal Change
      
      PiperOrigin-RevId: 222123106
    • Googletest export · c2989fe2
      Abseil Team authored
      Add stringization based tests for gmock-pp.h macros
      
      PiperOrigin-RevId: 221961835
    • Googletest export · 5dab7be7
      Abseil Team authored
      Validate spec modifiers.
      
      PiperOrigin-RevId: 221810235
    • Googletest export · 45d66d81
      Abseil Team authored
      Point IWYU at an existent path.
      
      PiperOrigin-RevId: 221797154
    • Googletest export · 8e86f672
      durandal authored
      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