Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: pkg/polymer_expressions/test/bindings_test.dart

Issue 196603029: Fix test timeouts. I forgot to include observe/mirrors_used.dart in tests from (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/polymer_expressions/test/eval_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library bindings_test; 5 library bindings_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 9
10 import 'package:logging/logging.dart'; 10 import 'package:logging/logging.dart';
11 import 'package:observe/observe.dart'; 11 import 'package:observe/observe.dart';
12 import 'package:observe/mirrors_used.dart'; // make test smaller.
12 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone; 13 import 'package:observe/src/dirty_check.dart' show dirtyCheckZone;
13 import 'package:polymer_expressions/polymer_expressions.dart'; 14 import 'package:polymer_expressions/polymer_expressions.dart';
14 import 'package:template_binding/template_binding.dart' show templateBind; 15 import 'package:template_binding/template_binding.dart' show templateBind;
15 import 'package:unittest/html_config.dart'; 16 import 'package:unittest/html_config.dart';
16 import 'package:unittest/unittest.dart'; 17 import 'package:unittest/unittest.dart';
17 18
18 main() => dirtyCheckZone().run(() { 19 main() => dirtyCheckZone().run(() {
19 useHtmlConfiguration(); 20 useHtmlConfiguration();
20 21
21 group('bindings', () { 22 group('bindings', () {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 @reflectable 127 @reflectable
127 class NotifyModel extends ChangeNotifier { 128 class NotifyModel extends ChangeNotifier {
128 var _x; 129 var _x;
129 NotifyModel([this._x]); 130 NotifyModel([this._x]);
130 131
131 get x => _x; 132 get x => _x;
132 set x(value) { 133 set x(value) {
133 _x = notifyPropertyChange(#x, _x, value); 134 _x = notifyPropertyChange(#x, _x, value);
134 } 135 }
135 } 136 }
OLDNEW
« no previous file with comments | « no previous file | pkg/polymer_expressions/test/eval_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698