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

Unified Diff: tests/language_strong/deferred_type_dependency_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 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
Index: tests/language_strong/deferred_type_dependency_test.dart
diff --git a/tests/language_strong/deferred_type_dependency_test.dart b/tests/language_strong/deferred_type_dependency_test.dart
index 766834e81b5d916e3c12d7ec426a96473da22c07..c4917cbbd2efab6e2d496d9cdd33c9421679470a 100644
--- a/tests/language_strong/deferred_type_dependency_test.dart
+++ b/tests/language_strong/deferred_type_dependency_test.dart
@@ -13,18 +13,18 @@ main() async {
await lib1.loadLibrary();
// Split the cases into a multi-test to test each feature separately.
Expect.isFalse(
- lib1.fooIs /// is: ok
- lib1.fooAs /// as: ok
- lib1.fooAnnotation /// type_annotation: ok
+ lib1.fooIs //# is: ok
+ lib1.fooAs //# as: ok
+ lib1.fooAnnotation //# type_annotation: ok
("string")
- is! String /// none: ok
+ is! String //# none: ok
);
await lib2.loadLibrary();
Expect.isTrue(
- lib1.fooIs /// is: ok
- lib1.fooAs /// as: ok
- lib1.fooAnnotation /// type_annotation: ok
+ lib1.fooIs //# is: ok
+ lib1.fooAs //# as: ok
+ lib1.fooAnnotation //# type_annotation: ok
(lib2.getInstance())
- is! String /// none: ok
+ is! String //# none: ok
);
}
« no previous file with comments | « tests/language_strong/deferred_no_prefix_test.dart ('k') | tests/language_strong/duplicate_constructor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698