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

Side by Side Diff: tests/html/node_test.dart

Issue 11364186: Dartifying SVG library class names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Syncing to latest, updating for style guide. Created 8 years, 1 month 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 | « tests/html/element_test.dart ('k') | tests/html/svg_1_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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 NodeTest; 5 library NodeTest;
6 import '../../pkg/unittest/lib/unittest.dart'; 6 import '../../pkg/unittest/lib/unittest.dart';
7 import '../../pkg/unittest/lib/html_individual_config.dart'; 7 import '../../pkg/unittest/lib/html_individual_config.dart';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:svg'; 9 import 'dart:svg' as svg;
10 10
11 Node makeNode() => new Element.tag('div'); 11 Node makeNode() => new Element.tag('div');
12 Node makeNodeWithChildren() => 12 Node makeNodeWithChildren() =>
13 new Element.html("<div>Foo<br/><!--baz--></div>"); 13 new Element.html("<div>Foo<br/><!--baz--></div>");
14 14
15 main() { 15 main() {
16 useHtmlIndividualConfiguration(); 16 useHtmlIndividualConfiguration();
17 17
18 var isText = predicate((x) => x is Text, 'is a Text'); 18 var isText = predicate((x) => x is Text, 'is a Text');
19 var isComment = predicate((x) => x is Comment, 'is a Comment'); 19 var isComment = predicate((x) => x is Comment, 'is a Comment');
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 test('every', () { 89 test('every', () {
90 var node = makeNodeWithChildren(); 90 var node = makeNodeWithChildren();
91 expect(node.nodes.every((n) => n is Node), isTrue); 91 expect(node.nodes.every((n) => n is Node), isTrue);
92 expect(node.nodes.every((n) => n is Comment), isFalse); 92 expect(node.nodes.every((n) => n is Comment), isFalse);
93 }); 93 });
94 94
95 test('some', () { 95 test('some', () {
96 var node = makeNodeWithChildren(); 96 var node = makeNodeWithChildren();
97 expect(node.nodes.some((n) => n is Comment), isTrue); 97 expect(node.nodes.some((n) => n is Comment), isTrue);
98 expect(node.nodes.some((n) => n is SVGElement), isFalse); 98 expect(node.nodes.some((n) => n is svg.SvgElement), isFalse);
99 }); 99 });
100 100
101 test('isEmpty', () { 101 test('isEmpty', () {
102 expect(makeNode().nodes.isEmpty, isTrue); 102 expect(makeNode().nodes.isEmpty, isTrue);
103 expect(makeNodeWithChildren().nodes.isEmpty, isFalse); 103 expect(makeNodeWithChildren().nodes.isEmpty, isFalse);
104 }); 104 });
105 105
106 test('length', () { 106 test('length', () {
107 expect(makeNode().nodes.length, 0); 107 expect(makeNode().nodes.length, 0);
108 expect(makeNodeWithChildren().nodes.length, 3); 108 expect(makeNodeWithChildren().nodes.length, 3);
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 }); 198 });
199 199
200 test('getRange', () { 200 test('getRange', () {
201 var range = makeNodeList().getRange(1, 2); 201 var range = makeNodeList().getRange(1, 2);
202 expect(range, isNodeList); 202 expect(range, isNodeList);
203 expect(range[0], isBRElement); 203 expect(range[0], isBRElement);
204 expect(range[1], isComment); 204 expect(range[1], isComment);
205 }); 205 });
206 }); 206 });
207 } 207 }
OLDNEW
« no previous file with comments | « tests/html/element_test.dart ('k') | tests/html/svg_1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698