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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 10154010: test rename overhaul: step 3 _tests.dart => _test.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 6f874a691c70f93530370d8c4bad731e1f7de837..a7255dfec83eef2e62c2cd3a9106b8172ec25be2 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -229,15 +229,15 @@ class StandardTestSuite implements TestSuite {
* to/
* mytestsuite/
* mytestsuite.status
- * example1_tests.dart
- * example2_tests.dart
- * example3_tests.dart
+ * example1_test.dart
+ * example2_test.dart
+ * example3_test.dart
*
* The important parts:
*
* * The leaf directory name is the name of your test suite.
* * The status file uses the same name.
- * * Test files are directly in that directory and end in "_tests.dart".
+ * * Test files are directly in that directory and end in "_test.dart".
*
* If you follow that convention, then you can construct one of these like:
*
@@ -253,7 +253,7 @@ class StandardTestSuite implements TestSuite {
return new StandardTestSuite(configuration,
name, directory, ['$directory/$name.status'],
- (filename) => filename.endsWith('_tests.dart'));
+ (filename) => filename.endsWith('_test.dart'));
}
/**

Powered by Google App Engine
This is Rietveld 408576698