| OLD | NEW |
| 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 polymer_intl_test; | 5 library polymer_intl_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:html'; | 8 import 'dart:html'; |
| 9 import 'package:polymer/polymer.dart'; | 9 import 'package:polymer/polymer.dart'; |
| 10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
| 11 import 'package:unittest/html_config.dart'; | 11 import 'package:unittest/html_config.dart'; |
| 12 import '../web/localized.dart'; | 12 import '../web/localized.dart'; |
| 13 | 13 |
| 14 /** | 14 /** |
| 15 * A trivial test to get the analyzer plugged into this sample. See | 15 * A trivial test to get the analyzer plugged into this sample. See |
| 16 * searchable_list_test.dart. | 16 * searchable_list_test.dart. |
| 17 */ | 17 */ |
| 18 @initMethod |
| 18 main() { | 19 main() { |
| 19 initPolymer(); | |
| 20 useHtmlConfiguration(); | 20 useHtmlConfiguration(); |
| 21 | 21 |
| 22 setUp(() => Polymer.onReady); | 22 setUp(() => Polymer.onReady); |
| 23 | 23 |
| 24 test('loading the element', () { | 24 test('loading the element', () { |
| 25 return new Future(() { | 25 return new Future(() { |
| 26 var localized = querySelector('localized-example'); | 26 var localized = querySelector('localized-example'); |
| 27 expect(localized is LocalizedExampleElement, isTrue); | 27 expect(localized is LocalizedExampleElement, isTrue); |
| 28 }); | 28 }); |
| 29 }); | 29 }); |
| 30 } | 30 } |
| OLD | NEW |