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/serialized_script_value_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/selectelement_test.dart ('k') | tests/html/shadow_dom_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('SerializedScriptValueTest'); 1 library SerializedScriptValueTest;
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 #import('utils.dart'); 5 import 'utils.dart';
6 6
7 serializationTest(name, value) => test(name, () { 7 serializationTest(name, value) => test(name, () {
8 // To check how value is serialized and deserialized, we create a MessageE vent. 8 // To check how value is serialized and deserialized, we create a MessageE vent.
9 final event = document.$dom_createEvent('MessageEvent'); 9 final event = document.$dom_createEvent('MessageEvent');
10 event.initMessageEvent('', false, false, value, '', '', window, []); 10 event.initMessageEvent('', false, false, value, '', '', window, []);
11 verifyGraph(value, event.data); 11 verifyGraph(value, event.data);
12 }); 12 });
13 13
14 14
15 main() { 15 main() {
(...skipping 13 matching lines...) Expand all
29 serializationTest('cyclic map', cyclicMap); 29 serializationTest('cyclic map', cyclicMap);
30 30
31 final simpleList = [ 100, 's']; 31 final simpleList = [ 100, 's'];
32 final dagList = [ simpleList, simpleList ]; 32 final dagList = [ simpleList, simpleList ];
33 final cyclicList = [ dagList ]; 33 final cyclicList = [ dagList ];
34 cyclicList.add(cyclicList); 34 cyclicList.add(cyclicList);
35 serializationTest('simple list', simpleList); 35 serializationTest('simple list', simpleList);
36 serializationTest('dag list', dagList); 36 serializationTest('dag list', dagList);
37 serializationTest('cyclic list', cyclicList); 37 serializationTest('cyclic list', cyclicList);
38 } 38 }
OLDNEW
« no previous file with comments | « tests/html/selectelement_test.dart ('k') | tests/html/shadow_dom_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698