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

Side by Side Diff: tools/testing/dart/lib/test_information.dart

Issue 841193003: cleanup to tools/testing/dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one last bit Created 5 years, 11 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
« no previous file with comments | « tools/testing/dart/lib/test_case.dart ('k') | tools/testing/dart/lib/test_progress.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 library test_information;
2
3 import 'path.dart';
4
5 class TestInformation {
6 Path filePath;
7 Path originTestPath;
8 Map optionsFromFile;
9 bool hasCompileError;
10 bool hasRuntimeError;
11 bool isNegativeIfChecked;
12 bool hasCompileErrorIfChecked;
13 bool hasStaticWarning;
14 String multitestKey;
15
16 TestInformation(this.filePath, this.originTestPath, this.optionsFromFile,
17 this.hasCompileError, this.hasRuntimeError,
18 this.isNegativeIfChecked, this.hasCompileErrorIfChecked,
19 this.hasStaticWarning,
20 {this.multitestKey: ''}) {
21 assert(filePath.isAbsolute);
22 }
23 }
24
25 class HtmlTestInformation extends TestInformation {
26 List<String> expectedMessages;
27 List<String> scripts;
28
29 HtmlTestInformation(Path filePath, this.expectedMessages, this.scripts)
30 : super(filePath, filePath,
31 {'isMultitest': false, 'isMultiHtmlTest': false},
32 false, false, false, false, false) {}
33 }
OLDNEW
« no previous file with comments | « tools/testing/dart/lib/test_case.dart ('k') | tools/testing/dart/lib/test_progress.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698