mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL moves the bulk of the SkyView code out of the |framework| directory because the |framework| directory was redundant in Dart package import declarations. TBR=ianh@google.com Review URL: https://codereview.chromium.org/1177383006.
25 lines
690 B
Dart
25 lines
690 B
Dart
// 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.
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:sky/app/view.dart';
|
|
import 'package:sky/widgets/ui_node.dart';
|
|
|
|
import '../../examples/stocks2/lib/stock_app.dart';
|
|
import '../resources/display_list.dart';
|
|
import '../resources/third_party/unittest/unittest.dart';
|
|
import '../resources/unit.dart';
|
|
|
|
void main() {
|
|
initUnit();
|
|
|
|
TestRenderView testRenderView = new TestRenderView();
|
|
|
|
test("launching stock app", () {
|
|
new StocksApp(renderViewOverride: testRenderView);
|
|
new Future.microtask(testRenderView.checkFrame);
|
|
});
|
|
}
|