flutter/dev/manual_tests
Greg Spencer ab2b0851a2
Add smoke tests for all the examples, fix 17 broken examples. (#89021)
This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework.

The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead.

The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
2021-09-28 09:32:06 -07:00
..
android [gradle] Unlock all configurations if a local engine is used (#83635) 2021-06-01 13:19:03 -07:00
ios Migrate iOS project to Xcode 13 compatibility (#90304) 2021-09-22 13:23:05 -07:00
lib Revert "Clean up the bindings APIs (#86438)" (#86484) 2021-07-15 09:29:16 -07:00
macos Build/copy macOS frameworks to built products instead of ephemeral directory (#72378) 2020-12-17 14:47:05 -08:00
test Add smoke tests for all the examples, fix 17 broken examples. (#89021) 2021-09-28 09:32:06 -07:00
web License update (#45373) 2019-11-27 15:04:02 -08:00
windows Reduce required Windows CMake version to 3.14 (#89390) 2021-09-03 21:05:58 -07:00
.gitignore Check in manual_tests gitignores (#71761) 2020-12-04 19:31:05 -08:00
.metadata Update manual_tests to be able to run on macOS/web (#44830) 2019-11-19 11:29:35 -08:00
pubspec.yaml Add smoke tests for all the examples, fix 17 broken examples. (#89021) 2021-09-28 09:32:06 -07:00