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

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

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 months 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/xmldocument_test.dart ('k') | tests/language/compile_time_constant_a_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) 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('XMLElementTest'); 5 #library('XMLElementTest');
6 #import('../../pkg/unittest/unittest.dart'); 6 #import('../../pkg/unittest/unittest.dart');
7 #import('../../pkg/unittest/html_config.dart'); 7 #import('../../pkg/unittest/html_config.dart');
8 #import('dart:html'); 8 #import('dart:html');
9 9
10 main() { 10 main() {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 makeClassSet().every((c) => c.contains('a'))); 129 makeClassSet().every((c) => c.contains('a')));
130 }); 130 });
131 131
132 test('some', () { 132 test('some', () {
133 Expect.isTrue( 133 Expect.isTrue(
134 makeClassSet().some((c) => c.contains('a'))); 134 makeClassSet().some((c) => c.contains('a')));
135 Expect.isFalse(makeClassSet().some((c) => c is num)); 135 Expect.isFalse(makeClassSet().some((c) => c is num));
136 }); 136 });
137 137
138 test('isEmpty', () { 138 test('isEmpty', () {
139 Expect.isFalse(makeClassSet().isEmpty()); 139 Expect.isFalse(makeClassSet().isEmpty);
140 Expect.isTrue(makeElement().classes.isEmpty()); 140 Expect.isTrue(makeElement().classes.isEmpty);
141 }); 141 });
142 142
143 test('length', () { 143 test('length', () {
144 Expect.equals(3, makeClassSet().length); 144 Expect.equals(3, makeClassSet().length);
145 Expect.equals(0, makeElement().classes.length); 145 Expect.equals(0, makeElement().classes.length);
146 }); 146 });
147 147
148 test('contains', () { 148 test('contains', () {
149 Expect.isTrue(makeClassSet().contains('foo')); 149 Expect.isTrue(makeClassSet().contains('foo'));
150 Expect.isFalse(makeClassSet().contains('qux')); 150 Expect.isFalse(makeClassSet().contains('qux'));
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 }); 563 });
564 }); 564 });
565 565
566 test('default rect values', () { 566 test('default rect values', () {
567 makeElement().rect.then( 567 makeElement().rect.then(
568 expectAsync1(ElementRect rect) { 568 expectAsync1(ElementRect rect) {
569 expectEmptyRect(rect.client); 569 expectEmptyRect(rect.client);
570 expectEmptyRect(rect.offset); 570 expectEmptyRect(rect.offset);
571 expectEmptyRect(rect.scroll); 571 expectEmptyRect(rect.scroll);
572 expectEmptyRect(rect.bounding); 572 expectEmptyRect(rect.bounding);
573 Expect.isTrue(rect.clientRects.isEmpty()); 573 Expect.isTrue(rect.clientRects.isEmpty);
574 })); 574 }));
575 }); 575 });
576 } 576 }
OLDNEW
« no previous file with comments | « tests/html/xmldocument_test.dart ('k') | tests/language/compile_time_constant_a_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698