Tag: test

  • Flutter Unit Testing Using Mockito

    Flutter Unit Testing Using Mockito

    When writing a unit test for a function, you may wish to mock or stub the results of other functions called from the test function. This post demonstrates how to use Mockito to write a unit test for a Flutter application (or any other Dart-based application). Importing Mockito Into Flutter Project This tutorial makes use…