Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.69 KB

File metadata and controls

18 lines (12 loc) · 1.69 KB

Flutter Testing Tutorial

Welcome to the repository for the Flutter Testing Tutorial. This repository contains the source code for unit testing and widget testing in Flutter, as demonstrated in my tutorial series on YouTube.

  1. Counter App - unit_test/counter_app/test/counter_test.dart
  2. Users HTTP Example - unit_test/users_http_example/test/user_repository_test.dart
  1. Counter App - widget_test/counter_app/test/home_page_test.dart
  2. Users Example - widget_test/users_example/test/home_page_test.dart
  3. Animation Example - widget_test/animations_example/test/animation_screen_test.dart
  1. Form Example - integration_test/form_example/integration_test/app_test.dart

Note: Make sure you have Flutter installed, and run flutter pub get to download the necessary dependencies.