Adam Barth 219ead3718 Rename all the things
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.
2015-06-13 09:46:52 -07:00

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);
});
}