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

Unified Diff: pkg/csslib/test/run_all.dart

Issue 23819036: Support for @mixin, @include and @extend (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: All changes ready to commit Created 7 years, 2 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
« no previous file with comments | « pkg/csslib/test/nested_test.dart ('k') | pkg/csslib/test/testing.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/csslib/test/run_all.dart
diff --git a/pkg/csslib/test/run_all.dart b/pkg/csslib/test/run_all.dart
index 517d5a0bf7d2503e8f5c4d27068f6e2a5d8fa809..2ec893889ea17280038b4cf6aede79051523afef 100644
--- a/pkg/csslib/test/run_all.dart
+++ b/pkg/csslib/test/run_all.dart
@@ -9,7 +9,6 @@
library run_impl;
import 'dart:io';
-import 'package:unittest/unittest.dart';
import 'package:unittest/compact_vm_config.dart';
import 'testing.dart';
@@ -20,6 +19,9 @@ import 'nested_test.dart' as nested_test;
import 'error_test.dart' as error_test;
import 'selector_test.dart' as selector_test;
import 'visitor_test.dart' as visitor_test;
+import 'mixin_test.dart' as mixin_test;
+import 'extend_test.dart' as extend_test;
+import 'big_1_test.dart' as big_1_test;
main() {
var args = new Options().arguments;
@@ -34,6 +36,9 @@ main() {
if (pattern.hasMatch('var_test.dart')) var_test.main();
if (pattern.hasMatch('nested_test.dart')) nested_test.main();
if (pattern.hasMatch('selector_test.dart')) selector_test.main();
+ if (pattern.hasMatch('mixin_test.dart')) mixin_test.main();
+ if (pattern.hasMatch('extend_test.dart')) extend_test.main();
+ if (pattern.hasMatch('big_1_test.dart')) big_1_test.main();
if (pattern.hasMatch('visitor_test.dart')) visitor_test.main();
if (pattern.hasMatch('error_test.dart')) error_test.main();
}
« no previous file with comments | « pkg/csslib/test/nested_test.dart ('k') | pkg/csslib/test/testing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698