1. 04 May, 2018 2 commits
  2. 19 Dec, 2017 1 commit
    • Alan Russian's avatar
      Change async stubbing to use thenAnswer. (#13521) · 30720bd1
      Alan Russian authored
      * Change async stubbing to use thenAnswer.
      
      Mockito now prohibits calling thenReturn with Futures and Streams. dart-lang/mockito#79
      
      * Update all Mockito deps to 3.0.0.
      
      * Revert "Update all Mockito deps to 3.0.0."
      
      This reverts commit e8ab9d37c33d3d7fe384abde64ea5b4d72623c75.
      
      I did not correctly update the mockito dep, and there's no easy way to update to 3.0 alpha right now.
      
      * Change thenAnswer((_) => to thenAnswer((invocation) =>
      
      * Add Invocation type to thenAnswer lambdas
      30720bd1
  3. 12 May, 2017 1 commit
  4. 15 Mar, 2017 1 commit
    • Michael Goderbauer's avatar
      Make ProcessSignals portable (#8779) · 15330ffb
      Michael Goderbauer authored
      * Make ProcessSignals portable
      
      This removes the need to wrap unsupported signals with in `if (!platform.isWindows) ..`.
      
      It also allows us to implement a work around for breaking the Windows console when flutter is exited with Ctrl+C.
      
      * review comments
      
      * adding tests
      
      * add license header
      15330ffb