OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 UnknownElementTest; | |
6 import 'package:unittest/unittest.dart'; | |
7 import 'package:unittest/html_config.dart'; | |
8 import 'dart:html'; | 5 import 'dart:html'; |
9 | 6 |
| 7 import 'package:expect/minitest.dart'; |
| 8 |
10 main() { | 9 main() { |
11 useHtmlConfiguration(); | |
12 | |
13 var isUnknownElement = | 10 var isUnknownElement = |
14 predicate((x) => x is UnknownElement, 'is an UnknownELement'); | 11 predicate((x) => x is UnknownElement, 'is an UnknownELement'); |
15 | 12 |
16 var foo = new Element.tag('foo'); | 13 dynamic foo = new Element.tag('foo'); |
17 foo.id = 'foo'; | 14 foo.id = 'foo'; |
18 var bar = new Element.tag('bar'); | 15 var bar = new Element.tag('bar'); |
19 bar.id = 'bar'; | 16 bar.id = 'bar'; |
20 document.body.nodes.addAll([foo, bar]); | 17 document.body.nodes.addAll(<Node>[foo, bar]); |
21 | 18 |
22 test('type-check', () { | 19 test('type-check', () { |
23 expect(foo, isUnknownElement); | 20 expect(foo, isUnknownElement); |
24 expect(bar, isUnknownElement); | 21 expect(bar, isUnknownElement); |
25 expect(query('#foo'), equals(foo)); | 22 expect(query('#foo'), equals(foo)); |
26 expect(query('#bar'), equals(bar)); | 23 expect(query('#bar'), equals(bar)); |
27 }); | 24 }); |
28 | 25 |
29 test('dispatch-fail', () { | 26 test('dispatch-fail', () { |
30 expect(() => foo.method1(), throwsNoSuchMethodError); | 27 expect(() => foo.method1(), throwsNoSuchMethodError); |
31 expect(() => foo.field1, throwsNoSuchMethodError); | 28 expect(() => foo.field1, throwsNoSuchMethodError); |
32 expect(() { foo.field1 = 42; }, throwsNoSuchMethodError); | 29 expect(() { foo.field1 = 42; }, throwsNoSuchMethodError); |
33 }); | 30 }); |
34 } | 31 } |
OLD | NEW |