spinning_mixed_test.dart 503 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.

Ian Hickson's avatar
Ian Hickson committed
5
import 'package:flutter/foundation.dart';
6
import 'package:flutter_test/flutter_test.dart';
Ian Hickson's avatar
Ian Hickson committed
7 8 9 10 11

import '../../../widgets/spinning_mixed.dart' as demo;

void main() {
  test('layers smoketest for widgets/spinning_mixed.dart', () {
Ian Hickson's avatar
Ian Hickson committed
12
    FlutterError.onError = (FlutterErrorDetails details) { throw details.exception; };
Ian Hickson's avatar
Ian Hickson committed
13 14 15
    demo.main();
  });
}