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

5
import 'package:test/test.dart';
6

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

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