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

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

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (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
« no previous file with comments | « tests/html/datalistelement_test.dart ('k') | tests/html/documentfragment_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 #library('DocumentTest'); 1 library DocumentTest;
2 #import('../../pkg/unittest/unittest.dart'); 2 import '../../pkg/unittest/lib/unittest.dart';
3 #import('../../pkg/unittest/html_config.dart'); 3 import '../../pkg/unittest/lib/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'); 9 var isElement = predicate((x) => x is Element, 'is an Element');
10 var isDivElement = predicate((x) => x is DivElement, 'is a DivElement'); 10 var isDivElement = predicate((x) => x is DivElement, 'is a DivElement');
11 var isAnchorElement = 11 var isAnchorElement =
12 predicate((x) => x is AnchorElement, 'is an AnchorElement'); 12 predicate((x) => x is AnchorElement, 'is an AnchorElement');
13 var isUnknownElement = 13 var isUnknownElement =
14 predicate((x) => x is UnknownElement, 'is UnknownElement'); 14 predicate((x) => x is UnknownElement, 'is UnknownElement');
15 15
16 test('CreateElement', () { 16 test('CreateElement', () {
17 // FIXME: nifty way crashes, do it boring way. 17 // FIXME: nifty way crashes, do it boring way.
18 expect(new Element.tag('span'), isElement); 18 expect(new Element.tag('span'), isElement);
19 expect(new Element.tag('div'), isDivElement); 19 expect(new Element.tag('div'), isDivElement);
20 expect(new Element.tag('a'), isAnchorElement); 20 expect(new Element.tag('a'), isAnchorElement);
21 expect(new Element.tag('bad_name'), isUnknownElement); 21 expect(new Element.tag('bad_name'), isUnknownElement);
22 }); 22 });
23 } 23 }
OLDNEW
« no previous file with comments | « tests/html/datalistelement_test.dart ('k') | tests/html/documentfragment_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698