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

We need to implement visitChildren for the RenderObjects in the sector demo. Also, add a test. Fixes #790
11 lines
298 B
Dart
11 lines
298 B
Dart
import 'package:test/test.dart';
|
|
import '../rendering/layout_utils.dart';
|
|
import '../../../../examples/rendering/sector_layout.dart';
|
|
|
|
void main() {
|
|
test('Sector layout can paint', () {
|
|
RenderingTester tester = new RenderingTester(root: buildSectorExample());
|
|
tester.pumpFrame();
|
|
});
|
|
}
|