1. 18 Sep, 2020 1 commit
  2. 10 Sep, 2020 2 commits
    • Abseil Team's avatar
      Googletest export · a4ab0abb
      Abseil Team authored
      Mark ACTION_Pn()-generated functions as must-use-result.
      
      This catches when a client creates an action and discards it, thinking that the action has actually been applied to something.
      
      This will help people who make the mistake of defining, for example, both `void Use(Foo*)` and `ACTION(Use) { Use(arg); }` for later application to a Foo.  With such an overload, a client may then write `Use();`, forgetting the param and being confused why nothing happens.
      
      This also catches when a client defines their own action in terms of an ACTION()-generated one, invokes the ACTION's builder, and then fails to invoke the resulting action, thinking it's operating on the outer action's parameters.
      
      PiperOrigin-RevId: 330614454
      a4ab0abb
    • Derek Mauro's avatar
      Merge pull request #2994 from xerus2000:gmock-docs · 64660396
      Derek Mauro authored
      PiperOrigin-RevId: 330545489
      64660396
  3. 08 Sep, 2020 1 commit
    • dmauro's avatar
      Googletest export · 5f8fcf4a
      dmauro authored
      Implements GetTimeInMillis() using std::chrono for portability
      Fixes #2995
      
      PiperOrigin-RevId: 329709958
      5f8fcf4a
  4. 01 Sep, 2020 2 commits
    • Abseil Team's avatar
      Googletest export · 7b1cf6dd
      Abseil Team authored
      gtest.cc: make ColoredPrintf static
      
      the prototype was removed from gtest.h in cl/301446904; quiets a
      -Wmissing-declarations warning
      
      PiperOrigin-RevId: 329569020
      7b1cf6dd
    • Abseil Team's avatar
      Googletest export · af1e75ce
      Abseil Team authored
      Add millisecond precision to start timestamp in XML/JSON output
      
      - Previous timestamp had format YYYY-MM-DDThh:mm:ss, now YYYY-MM-DDThh:mm:ss.sss
      - This conforms to the ISO 8601 standard
      
      PiperOrigin-RevId: 329503623
      af1e75ce
  5. 27 Aug, 2020 1 commit
  6. 25 Aug, 2020 1 commit
  7. 24 Aug, 2020 5 commits
  8. 14 Aug, 2020 1 commit
    • krzysio's avatar
      Googletest export · adeef192
      krzysio authored
      Mention matchers as an alternative to assertions in subroutines.
      
      Matchers are often the better choice - they can provide more informative error messages and circumvent all of the complexity described in this section.
      
      PiperOrigin-RevId: 326332149
      adeef192
  9. 12 Aug, 2020 4 commits
    • Rob Earhart's avatar
      Export LICENSE · 025e1a48
      Rob Earhart authored
      This makes it easier to include the license in redistributions, as required by the license.
      025e1a48
    • Abseil Team's avatar
      Googletest export · 10ade847
      Abseil Team authored
      internal change
      
      PiperOrigin-RevId: 326080000
      10ade847
    • dmauro's avatar
      Googletest export · 6c655699
      dmauro authored
      Remove references to the GoogleTest mailing list
      Fixes #2966
      
      PiperOrigin-RevId: 326065972
      6c655699
    • Abseil Team's avatar
      Googletest export · 3d93f880
      Abseil Team authored
      internal change
      
      PiperOrigin-RevId: 325799949
      3d93f880
  10. 07 Aug, 2020 5 commits
    • Derek Mauro's avatar
      Merge pull request #2961 from FranciscoThiesen:patch-1 · 3af06fe1
      Derek Mauro authored
      PiperOrigin-RevId: 325429245
      3af06fe1
    • Derek Mauro's avatar
      Merge pull request #2972 from srz-zumix:fix/remove_legacy_testcase_api_ · ce654c2f
      Derek Mauro authored
      PiperOrigin-RevId: 325220934
      ce654c2f
    • Abseil Team's avatar
      Googletest export · d0de618a
      Abseil Team authored
      Fixing exception-safety bug in googletest. Previously, if an exception was
      thrown during a call to a mock that would have triggered an error, the error
      was discarded.
      
      Fixes #2890
      
      PiperOrigin-RevId: 325017806
      d0de618a
    • Abseil Team's avatar
      Googletest export · 5a5caab3
      Abseil Team authored
      Fix DoAll to work with move-only sink arguments.
      
      This changes types of the first n - 1 actions so that they only get a readonly
      view of the arguments. The last action will accept move only objects.
      
      PiperOrigin-RevId: 324619666
      5a5caab3
    • Abseil Team's avatar
      Googletest export · 48ec6409
      Abseil Team authored
      Fix DoAll to work with move-only sink arguments.
      
      This changes types of the first n - 1 actions so that they only get a readonly
      view of the arguments. The last action will accept move only objects.
      
      PiperOrigin-RevId: 324600664
      48ec6409
  11. 05 Aug, 2020 1 commit
  12. 03 Aug, 2020 10 commits
  13. 02 Aug, 2020 1 commit
  14. 31 Jul, 2020 2 commits
  15. 30 Jul, 2020 1 commit
  16. 29 Jul, 2020 1 commit
    • Abseil Team's avatar
      Googletest export · 68ca04c2
      Abseil Team authored
      Updated documentation for Value-Parameterized Tests: Per-default, a TEST_P without a corresponding INSTANTIATE_TEST_SUITE_P now causes a failing test.
      
      PiperOrigin-RevId: 323622468
      68ca04c2
  17. 28 Jul, 2020 1 commit