Skip to content

bwnyasse/flutter_movie_deep_dive_test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_movie_deep_dive_test

Testing Flutter Applications

Don't forget to test your Dart Code

Testing is one of the most important things during the software development.

One of the beauty of the Dart Ecosystem, is the way developers can easily test their code.

Flutter has 3 types of tests.

  • Unit tests are the one used for testing a method, or class.
  • Widget tests are the tests for controlling single widget.
  • Integration tests are tests the large scale or all of the application.

Purpose

Through a flutter movie application , this project demonstrate how to implement unit , widgets and integration tests in your application.