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

Unified Diff: pkg/testing/lib/src/test_description.dart

Issue 2626003003: Implement multitest expectations. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« pkg/testing/lib/src/multitest.dart ('K') | « pkg/testing/lib/src/multitest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/testing/lib/src/test_description.dart
diff --git a/pkg/testing/lib/src/test_description.dart b/pkg/testing/lib/src/test_description.dart
index 9e2495b5aeafa2826ae2636f1c1f580f8f03b668..9b1c5b3169b4069342326d761f2b947951e2567b 100644
--- a/pkg/testing/lib/src/test_description.dart
+++ b/pkg/testing/lib/src/test_description.dart
@@ -13,6 +13,10 @@ class TestDescription implements Comparable<TestDescription> {
final File file;
final Uri output;
+ /// If non-null, this is a generated multitest, and the set contains the
+ /// expected outcomes.
+ Set<String> multitestExpectations;
+
TestDescription(this.root, this.file, {this.output});
Uri get uri => file.uri;
« pkg/testing/lib/src/multitest.dart ('K') | « pkg/testing/lib/src/multitest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698