• Nate Bosch's avatar
    Remove uses of deprecated test_api imports (#124732) · dcfd35f8
    Nate Bosch authored
    Most of these imports were never appropriate. The `test_api` package was never intended for use in `_test.dart` files.
    Where possible move imports to `matcher`, otherwise move them to `test` or `flutter_test`.
    
    Leave uses of `test_api` from `flutter_test` library code.
    Unverified
    dcfd35f8
spinning_square_test.dart 644 Bytes
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/foundation.dart';
import 'package:flutter/scheduler.dart';
import 'package:flutter_test/flutter_test.dart' hide TypeMatcher, isInstanceOf;

import '../../../rendering/spinning_square.dart' as demo;

void main() {
  test('layers smoketest for rendering/spinning_square.dart', () {
    FlutterError.onError = (FlutterErrorDetails details) { throw details.exception; };
    demo.main();
    expect(SchedulerBinding.instance.hasScheduledFrame, true);
  });
}