sector_test.dart 509 Bytes
Newer Older
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:flutter_test/flutter_test.dart';
6

7
import '../rendering/src/sector_layout.dart';
8
import '../widgets/sectors.dart';
9

10 11 12 13
void main() {
  test('SectorConstraints', () {
    expect(const SectorConstraints().isTight, isFalse);
  });
14 15 16 17

  testWidgets('Sector Sixes', (WidgetTester tester) {
    tester.pumpWidget(new SectorApp());
  });
18
}