flutter/packages/unit/test/examples/sector_layout_test.dart
Hixie cd6c4da3c6 Refactor rendering_tester
RenderView has to be a singleton for sanity during tests, otherwise they
all end up in the dirty lists and we end up pumping all of them each frame.
2015-09-16 12:03:57 -07:00

11 lines
265 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', () {
layout(buildSectorExample(), phase: EnginePhase.composite);
});
}