| OLD | NEW |
| 1 #library('DocumentTest'); | 1 #library('DocumentTest'); |
| 2 #import('../../pkg/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/unittest.dart'); |
| 3 #import('../../pkg/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/html_config.dart'); |
| 4 #import('dart:html'); | 4 #import('dart:html'); |
| 5 | 5 |
| 6 main() { | 6 main() { |
| 7 useHtmlConfiguration(); | 7 useHtmlConfiguration(); |
| 8 | 8 |
| 9 var isElement = predicate((x) => x is Element, 'is an Element'); |
| 10 var isDivElement = predicate((x) => x is DivElement, 'is a DivElement'); |
| 11 var isAnchorElement = |
| 12 predicate((x) => x is AnchorElement, 'is an AnchorElement'); |
| 13 var isUnknownElement = predicate((x) => x is Element, 'is UnknownElement'); |
| 14 |
| 9 test('CreateElement', () { | 15 test('CreateElement', () { |
| 10 // FIXME: nifty way crashes, do it boring way. | 16 // FIXME: nifty way crashes, do it boring way. |
| 11 Expect.isTrue(new Element.tag('span') is Element); | 17 expect(new Element.tag('span'), isElement); |
| 12 Expect.isTrue(new Element.tag('div') is DivElement); | 18 expect(new Element.tag('div'), isDivElement); |
| 13 Expect.isTrue(new Element.tag('a') is AnchorElement); | 19 expect(new Element.tag('a'), isAnchorElement); |
| 14 Expect.isTrue(new Element.tag('bad_name') is UnknownElement); | 20 expect(new Element.tag('bad_name'), isUnknownElement); |
| 15 }); | 21 }); |
| 16 } | 22 } |
| OLD | NEW |