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

Side by Side Diff: samples/third_party/dromaeo/tests/RunnerSuite.dart

Issue 9374026: Move dromaeo to third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Moved Dromaeo to third party. Created 8 years, 10 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
OLDNEW
1 typedef void Test(); 1 typedef void Test();
2 typedef void Operation(); 2 typedef void Operation();
3 typedef void Reporter(Map<String, Result> results); 3 typedef void Reporter(Map<String, Result> results);
4 4
5 class Suite { 5 class Suite {
6 /** 6 /**
7 * Ctor. 7 * Ctor.
8 * [:_window:] The window of the suite. 8 * [:_window:] The window of the suite.
9 * [:_name:] The name of the suite. 9 * [:_name:] The name of the suite.
10 */ 10 */
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 126
127 List<Operation> _operations; 127 List<Operation> _operations;
128 int _nTests; 128 int _nTests;
129 int _nRanTests; 129 int _nRanTests;
130 130
131 Suite _addOperation(Operation operation) { 131 Suite _addOperation(Operation operation) {
132 _operations.add(operation); 132 _operations.add(operation);
133 return this; 133 return this;
134 } 134 }
135 } 135 }
OLDNEW
« no previous file with comments | « samples/third_party/dromaeo/tests/Common.dart ('k') | samples/third_party/dromaeo/tests/dom-attr.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698