sector_layout_test.dart 481 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
Ian Hickson's avatar
Ian Hickson committed
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
// @dart = 2.8

7
import 'package:flutter_test/flutter_test.dart';
8

9
import '../../../../examples/layers/rendering/custom_coordinate_systems.dart';
10
import '../rendering/rendering_tester.dart';
11 12 13

void main() {
  test('Sector layout can paint', () {
Hixie's avatar
Hixie committed
14
    layout(buildSectorExample(), phase: EnginePhase.composite);
15 16
  });
}