1. 20 Nov, 2018 4 commits
    • Abseil Team's avatar
      Googletest export · 5dab7be7
      Abseil Team authored
      Validate spec modifiers.
      
      PiperOrigin-RevId: 221810235
      5dab7be7
    • durandal's avatar
      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
      8e86f672
    • Abseil Team's avatar
      Googletest export · aac18185
      Abseil Team authored
      Upgrade WithArgs family of actions to C++11.
      
      PiperOrigin-RevId: 221671690
      aac18185
    • Abseil Team's avatar
      Googletest export · e46e87bb
      Abseil Team authored
      Unify implementation of GMOCK_PP_REPEAT and GMOCK_PP_FOREACH.
      
      PiperOrigin-RevId: 221659669
      e46e87bb
  2. 15 Nov, 2018 1 commit
  3. 13 Nov, 2018 1 commit
    • Abseil Team's avatar
      Googletest export · b18d39bd
      Abseil Team authored
      Include type_traits header
      
      ElementsAre, UnorderedElementsAre, AllOf, and AnyOf are all defined in terms of std::decay, which is in the type_traits header.
      
      PiperOrigin-RevId: 220818637
      b18d39bd
  4. 10 Nov, 2018 1 commit
  5. 08 Nov, 2018 1 commit
    • Abseil Team's avatar
      Googletest export · de5be0eb
      Abseil Team authored
      Move FunctionMocker and MockFunction out of the pump file and implement with variadic templates.
      
      PiperOrigin-RevId: 220640265
      de5be0eb
  6. 07 Nov, 2018 1 commit
    • krzysio's avatar
      Googletest export · 105579a6
      krzysio authored
      Improve Bazel build files.
      
      New target gtest_prod allows access to the FRIEND_TEST macro without depending on the entirety of GTest in production executables. Additionally, duplicate config_setting rules were removed and formatting was adjusted.
      
      PiperOrigin-RevId: 220279205
      105579a6
  7. 31 Oct, 2018 2 commits
  8. 29 Oct, 2018 2 commits
    • Alex Konradi's avatar
      Add Optional() to the cheat sheet doc. · 39de88cb
      Alex Konradi authored
      The Optional() matcher is otherwise undocumented except in the source.
      This patch adds it to the cheat sheet for better visibility.
      39de88cb
    • misterg's avatar
      Googletest export · 80b43d90
      misterg authored
      Remove linked_ptr and use std::shared_ptr instead
      
      PiperOrigin-RevId: 219129336
      80b43d90
  9. 28 Oct, 2018 1 commit
  10. 26 Oct, 2018 2 commits
    • Abseil Team's avatar
      Googletest export · b57c7039
      Abseil Team authored
      Remove linked_ptr and use std::shared_ptr instead
      
      PiperOrigin-RevId: 218618184
      b57c7039
    • misterg's avatar
      Googletest export · a50e4f05
      misterg authored
      Remove linked_ptr and use std::shared_ptr instead
      
      PiperOrigin-RevId: 218571466
      a50e4f05
  11. 23 Oct, 2018 1 commit
  12. 18 Oct, 2018 1 commit
  13. 16 Oct, 2018 4 commits
  14. 12 Oct, 2018 1 commit
  15. 11 Oct, 2018 3 commits
  16. 09 Oct, 2018 4 commits
  17. 08 Oct, 2018 2 commits
  18. 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
  19. 02 Oct, 2018 2 commits
  20. 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
  21. 18 Sep, 2018 1 commit
  22. 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
  23. 13 Sep, 2018 2 commits