| OLD | NEW |
| 1 #library('TypingTest'); | 1 #library('TypingTest'); |
| 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 isStyleSheetList = |
| 10 predicate((x) => x is List<StyleSheet>, 'is a List<StyleSheet>'); |
| 11 |
| 9 test('NodeList', () { | 12 test('NodeList', () { |
| 10 List<Node> asList = window.document.queryAll('body'); | 13 List<Node> asList = window.document.queryAll('body'); |
| 11 // Check it's Iterable | 14 // Check it's Iterable |
| 12 int counter = 0; | 15 int counter = 0; |
| 13 for (Node node in window.document.queryAll('body')) { | 16 for (Node node in window.document.queryAll('body')) { |
| 14 counter++; | 17 counter++; |
| 15 } | 18 } |
| 16 Expect.equals(1, counter); | 19 expect(counter, 1); |
| 17 counter = 0; | 20 counter = 0; |
| 18 window.document.queryAll('body').forEach((e) { counter++; }); | 21 window.document.queryAll('body').forEach((e) { counter++; }); |
| 19 Expect.equals(1, counter); | 22 expect(counter, 1); |
| 20 }); | 23 }); |
| 21 | 24 |
| 22 test('StyleSheetList', () { | 25 test('StyleSheetList', () { |
| 23 List<StyleSheet> asList = window.document.styleSheets; | 26 List<StyleSheet> asList = window.document.styleSheets; |
| 24 expect(asList is List<StyleSheet>); | 27 expect(asList, isStyleSheetList); |
| 25 // Check it's Iterable. | 28 // Check it's Iterable. |
| 26 int counter = 0; | 29 int counter = 0; |
| 27 for (StyleSheet styleSheet in window.document.styleSheets) { | 30 for (StyleSheet styleSheet in window.document.styleSheets) { |
| 28 counter++; | 31 counter++; |
| 29 } | 32 } |
| 30 | 33 |
| 31 // There is one style sheet from the unittest framework. | 34 // There is one style sheet from the unittest framework. |
| 32 Expect.equals(1, counter); | 35 expect(counter, 1); |
| 33 }); | 36 }); |
| 34 } | 37 } |
| OLD | NEW |