1. 15 Dec, 2023 1 commit
  2. 13 Sep, 2023 1 commit
  3. 26 May, 2023 1 commit
  4. 14 Mar, 2023 1 commit
  5. 06 Jan, 2023 1 commit
  6. 20 Dec, 2022 1 commit
  7. 12 Dec, 2022 1 commit
  8. 07 Nov, 2022 1 commit
  9. 05 Oct, 2022 1 commit
  10. 20 Sep, 2022 1 commit
  11. 16 Sep, 2022 1 commit
  12. 18 Jul, 2022 1 commit
  13. 22 Jun, 2022 1 commit
  14. 16 Jun, 2022 1 commit
  15. 20 May, 2022 1 commit
  16. 18 Feb, 2022 1 commit
  17. 07 Jan, 2022 1 commit
  18. 08 Oct, 2021 3 commits
  19. 14 Sep, 2021 1 commit
  20. 01 Jul, 2021 1 commit
  21. 28 Apr, 2021 1 commit
  22. 27 Apr, 2021 1 commit
  23. 13 Apr, 2021 1 commit
  24. 08 Apr, 2021 1 commit
  25. 31 Mar, 2021 1 commit
  26. 23 Mar, 2021 1 commit
  27. 22 Mar, 2021 1 commit
  28. 04 Mar, 2021 1 commit
  29. 16 Feb, 2021 1 commit
  30. 27 Jan, 2021 1 commit
  31. 20 Jan, 2021 1 commit
  32. 22 Dec, 2020 1 commit
  33. 16 Dec, 2020 1 commit
  34. 15 Oct, 2020 1 commit
  35. 19 Sep, 2020 1 commit
  36. 11 Sep, 2020 2 commits
  37. 31 Aug, 2020 1 commit
    • Chris Bracken's avatar
      Prefer moreOrLessEquals over closeTo (#64915) · c0ea00ed
      Chris Bracken authored
      Flutter's `moreOrLessEquals` has a few advantages over `closeTo` from
      the `matcher` package:
      
         * It emits the epsilon value in the test result on failure.
         * It uses a named parameter for epsilon, which improves readability
           at the call site.
         * It has a reasonable default for epsilon in cases where something
           more specific isn't required.
      
      Using it also has the nice property that it aids in its own discovery
      when when people go looking for such functionality in new tests.
      
      This change also includes a couple unrelated whitespace formatting cleanups.
      c0ea00ed