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

Unified Diff: tests/language/type_dartc_test.dart

Issue 10248007: test rename overhaul: step 8 - language tests (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: tests/language/type_dartc_test.dart
diff --git a/tests/language/src/TypeDartcTest.dart b/tests/language/type_dartc_test.dart
similarity index 97%
rename from tests/language/src/TypeDartcTest.dart
rename to tests/language/type_dartc_test.dart
index ced265efb720463e4389d66524820e714999ef53..9922464699a31dd8a2c48c99a219075ed7fadabe 100644
--- a/tests/language/src/TypeDartcTest.dart
+++ b/tests/language/type_dartc_test.dart
@@ -20,7 +20,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(12, error.line);
Expect.equals(15, error.column);
}
@@ -62,7 +62,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(49, error.line);
Expect.equals(15, error.column);
}
@@ -88,7 +88,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(74, error.line);
Expect.equals(14, error.column);
}
@@ -111,7 +111,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(99, error.line);
Expect.equals(15, error.column);
}
@@ -136,7 +136,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(123, error.line);
Expect.equals(15, error.column);
}
@@ -168,7 +168,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(145, error.line);
Expect.equals(33, error.column);
}
@@ -203,7 +203,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(175, error.line);
Expect.equals(28, error.column);
}
@@ -225,7 +225,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(209, error.line);
Expect.equals(17, error.column);
}
@@ -242,7 +242,7 @@ class TypeTest {
pos = error.url.lastIndexOf("\\", error.url.length);
}
String subs = error.url.substring(pos + 1, error.url.length);
- Expect.equals("TypeTest.dart", subs);
+ Expect.equals("type_test.dart", subs);
Expect.equals(225, error.line);
Expect.equals(14, error.column);
}
« no previous file with comments | « tests/language/type_checks_in_factory_method_test.dart ('k') | tests/language/type_propagation_in_for_update_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698