Flutter-Test contains tests related to Flutter app including Unit tests, Widget test and end-to-end integration tests using Flutter-Driver.
Flutter officially highlights 3 different types of testing as mentioned here: https://flutter.dev/docs/testing
Unit tests: A unit test tests a single function, method, or class.
Widget tests: A widget test (in other UI frameworks referred to as component test) tests a single widget.
Integration tests: An integration test tests a complete app or a large part of an app.