• Home
Name Date Size #Lines LOC

..--

test_data/12-May-2024-290227

README.mdD12-May-2024662 1813

daemon_mode_test.dartD12-May-20243.3 KiB10083

debugger_stepping_test.dartD12-May-20242.3 KiB5948

expression_evaluation_test.dartD12-May-20246.1 KiB167139

flutter_attach_test.dartD12-May-20242.5 KiB6861

flutter_run_test.dartD12-May-20242.6 KiB6555

hot_reload_test.dartD12-May-20246.5 KiB159147

lifetime_test.dartD12-May-20242 KiB5545

test_driver.dartD12-May-202424 KiB700619

test_utils.dartD12-May-20241.7 KiB5647

README.md

1# Integration tests
2
3These tests are not hermetic, and use the actual Flutter SDK. While
4they don't require actual devices, they run `flutter_tester` to test
5Dart VM and Flutter integration.
6
7Use this command to run (from the `flutter_tools` directory):
8
9```shell
10../../bin/cache/dart-sdk/bin/pub run test test/integration.shard
11```
12
13These tests are expensive to run and do not give meaningful coverage
14information for the flutter tool (since they are black-box tests that
15run the tool as a subprocess, rather than being unit tests). For this
16reason, they are in a separate shard when running on continuous
17integration and are not run when calculating coverage.
18