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

Unified Diff: lib/src/backend/declarer.dart

Issue 1405633004: feature: tag tests; choose tags on command line Base URL: git@github.com:yjbanov/test.git@tags
Patch Set: address comments Created 5 years, 1 month 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 | « no previous file | lib/src/backend/metadata.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/backend/declarer.dart
diff --git a/lib/src/backend/declarer.dart b/lib/src/backend/declarer.dart
index e337b15960f06ba5456d973ec3dbc60c94ae4897..79254c801e9b5b78fb002645130698ede7b4d30a 100644
--- a/lib/src/backend/declarer.dart
+++ b/lib/src/backend/declarer.dart
@@ -73,7 +73,7 @@ class Declarer {
/// Defines a test case with the given name and body.
void test(String name, body(), {String testOn, Timeout timeout, skip,
- Map<String, dynamic> onPlatform, List<String> tags}) {
+ Map<String, dynamic> onPlatform, tags}) {
_checkNotBuilt("test");
var metadata = _metadata.merge(new Metadata.parse(
@@ -95,7 +95,7 @@ class Declarer {
/// Creates a group of tests.
void group(String name, void body(), {String testOn, Timeout timeout, skip,
- Map<String, dynamic> onPlatform, List<String> tags}) {
+ Map<String, dynamic> onPlatform, tags}) {
_checkNotBuilt("group");
var metadata = _metadata.merge(new Metadata.parse(
« no previous file with comments | « no previous file | lib/src/backend/metadata.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698