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

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

Issue 11275054: Modified unittest to use new argument syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698