flutter_testing

Flutter 中的简单计数器应用程序,带有单元、小部件和集成测试

  • 单元测试测试单个函数、方法或类。
  • 组件测试(在其他UI框架中也称为组件测试)测试单个组件。
  • 集成测试测试完整的应用程序或应用程序的大部分。

入门

运行单元测试

flutter test test/unit_test.dart

运行组件测试

flutter test test/widget_test.dart

运行集成测试

flutter test integration_test/integration_test.dart

GitHub

查看 Github