sector_test.dart 516 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// 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
  testWidgets('Sector Sixes', (WidgetTester tester) async {
16
    await tester.pumpWidget(SectorApp());
17
  });
18
}