mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Also, rename build_utils.dart to widget_tester.dart. These files are now named for their most commonly used classes. Finally, add a .analysis_options to silence the (intentional) analyzer warnings in append_child_test.dart.
12 lines
303 B
Dart
12 lines
303 B
Dart
import 'package:test/test.dart';
|
|
|
|
import '../rendering/rendering_tester.dart';
|
|
import '../../../../examples/rendering/sector_layout.dart';
|
|
|
|
void main() {
|
|
test('Sector layout can paint', () {
|
|
RenderingTester tester = new RenderingTester(root: buildSectorExample());
|
|
tester.pumpFrame();
|
|
});
|
|
}
|