A tutorial for flutter testing guided by YouTube videos of Flutter Explained.
- Flutter Explained - Intro into Testing
- Flutter Explained - Unit Testing
- Flutter Explained - Widget Testing
- Flutter Explained - Integration Testing
You can follow the tutorial explained in the video if you check out the different "tutorial" branches. Every branch will contain several todos that will help you to follow along and help you writing your first tests.
Unit Tests should be ...
- easy to write and maintainable
- should be readable
- should be reliable
- should be fast
- should be independent