1. 23 Oct, 2018 1 commit
  2. 18 Oct, 2018 1 commit
  3. 16 Oct, 2018 4 commits
  4. 12 Oct, 2018 1 commit
  5. 11 Oct, 2018 3 commits
  6. 09 Oct, 2018 4 commits
  7. 08 Oct, 2018 2 commits
  8. 05 Oct, 2018 1 commit
    • Abseil Team's avatar
      Apply clang-tidy modernize-use-nullptr to googletest. · 4bb49ed6
      Abseil Team authored
      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
      4bb49ed6
  9. 02 Oct, 2018 2 commits
  10. 25 Sep, 2018 1 commit
    • misterg's avatar
      Googletest export · ba974c97
      misterg authored
      Remove non-variadic pre C++11 ElementsAreMatcher and UnorderedElementsAreMatcher
      
      PiperOrigin-RevId: 214266944
      ba974c97
  11. 18 Sep, 2018 1 commit
  12. 14 Sep, 2018 1 commit
    • Abseil Team's avatar
      Googletest export · ffc9baeb
      Abseil Team authored
      Treat default-constructed string_view same as constructed from "".
      In the context of string comparison (e.g. HasSubstr, StartsWith, EndsWith,
      etc.), a default-constructed string_view (nullptr) should be semantically same
      as a empty string "".
      
      PiperOrigin-RevId: 212816839
      ffc9baeb
  13. 13 Sep, 2018 3 commits
  14. 11 Sep, 2018 2 commits
  15. 09 Sep, 2018 1 commit
  16. 04 Sep, 2018 1 commit
  17. 03 Sep, 2018 1 commit
  18. 02 Sep, 2018 1 commit
  19. 31 Aug, 2018 2 commits
    • misterg's avatar
      Googletest export · a5cc7aa3
      misterg authored
      Fix broken OSS windows build.
      
      PiperOrigin-RevId: 210969049
      a5cc7aa3
    • misterg's avatar
      Googletest export · 2cc00853
      misterg authored
      Internal Change
      
      PiperOrigin-RevId: 210594341
      2cc00853
  20. 30 Aug, 2018 1 commit
  21. 28 Aug, 2018 1 commit
    • Abseil Team's avatar
      Googletest export · 65d03530
      Abseil Team authored
      Fix line that was wrapping in the middle of a link
      
      This looks uglier, but has the advantage that the link is kept in one
      piece.
      
      PiperOrigin-RevId: 210537337
      65d03530
  22. 27 Aug, 2018 1 commit
  23. 24 Aug, 2018 2 commits
  24. 22 Aug, 2018 1 commit
  25. 21 Aug, 2018 1 commit
    • Dakota Hawkins's avatar
      Improve CMake exported targets. · 759ef7c4
      Dakota Hawkins authored
      
      
      I _think_ this represents some of the "best practices" for exporting
      targets. They'll be available in a `googletest::` namespace (e.g.
      `googletest::gmock`) with non-namespaced `ALIAS` targets.
      
      - Added GOOGLETEST_VERSION variable
      - Use `CMakePackageConfigHelpers`, bump minimum CMake version to 2.8.8
      Signed-off-by: default avatarDakota Hawkins <dakotahawkins@gmail.com>
      759ef7c4