Commit fd3884b4 authored by Adam Barth's avatar Adam Barth

Turn big_circle.dart into a test

Fixes #829
parent 1a15cb2d
...@@ -4,7 +4,7 @@ import 'package:test/test.dart'; ...@@ -4,7 +4,7 @@ import 'package:test/test.dart';
import 'build_utils.dart'; import 'build_utils.dart';
void main() { void main() {
test('Global key mutate during iteration', () { test('Align smoke test', () {
WidgetTester tester = new WidgetTester(); WidgetTester tester = new WidgetTester();
tester.pumpFrame(() { tester.pumpFrame(() {
......
// 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 'package:sky/widgets.dart';
import 'package:sky/theme/colors.dart' as colors; import 'package:sky/theme/colors.dart' as colors;
import 'package:sky/widgets.dart';
import 'package:test/test.dart';
import 'build_utils.dart';
class BigCircleApp extends App { void main() {
Widget build() { test('Circles can have uniform borders', () {
return new Container( WidgetTester tester = new WidgetTester();
tester.pumpFrame(() {
return new Container(
padding: new EdgeDims.all(50.0), padding: new EdgeDims.all(50.0),
decoration: new BoxDecoration( decoration: new BoxDecoration(
shape: Shape.circle, shape: Shape.circle,
border: new Border.all(width: 10.0, color: const Color(0x80FF00FF)), border: new Border.all(width: 10.0, color: const Color(0x80FF00FF)),
backgroundColor: colors.Teal[600] backgroundColor: colors.Teal[600]
) )
); );
} });
}
void main() { });
runApp(new BigCircleApp());
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment