sector_layout_test.dart 484 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
@TestOn('!chrome')
6
import 'package:flutter_test/flutter_test.dart';
7

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

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