• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5import 'package:flutter/foundation.dart';
6import 'package:test_api/test_api.dart' hide TypeMatcher, isInstanceOf;
7
8import '../../../rendering/flex_layout.dart' as demo;
9
10void main() {
11  test('layers smoketest for rendering/flex_layout.dart', () {
12    FlutterError.onError = (FlutterErrorDetails details) { throw details.exception; };
13    demo.main();
14  });
15}
16