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

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 test('CreateElement', () { 9 test('CreateElement', () {
10 // FIXME: nifty way crashes, do it boring way. 10 // FIXME: nifty way crashes, do it boring way.
11 Expect.isTrue(new Element.tag('span') is Element); 11 expect(new Element.tag('span'), new isInstanceOf<Element>('Element'));
12 Expect.isTrue(new Element.tag('div') is DivElement); 12 expect(new Element.tag('div'), new isInstanceOf<DivElement>('DivElement'));
13 Expect.isTrue(new Element.tag('a') is AnchorElement); 13 expect(new Element.tag('a'),
14 Expect.isTrue(new Element.tag('bad_name') is UnknownElement); 14 new isInstanceOf<AnchorElement>('AnchorElement'));
15 expect(new Element.tag('bad_name'),
16 new isInstanceOf<Element>(' is UnknownElement'));
15 }); 17 });
16 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698