I read the documentation of Flutter 1.0 based. I also tried to run each test type explained by the documentation.
Flutter has three type testing feature. When I saw the page and below a table, I remember my opinion for mobile test automation like 1 or 2. The flutter also has a similar role for each test type, and they also prepare testing tools for them on their own.
| Unit | Widget | Integration | |
| Confidence | Low | Higher | Highest |
| Maintenance cost | Low | Higher | Highest |
| Dependencies | Few | More | Most |
| Execution speed | Quick | Slower | Slowest |
It was very excited for me.
I tried to run each test in https://github.com/KazuCocoa/my_flutter_app2 . The app was based on the default app. I have added widget and integration tests for them. (Very simple one though)
1 Comment