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

Unified Diff: pkg/barback/test/logger_test.dart

Issue 166333003: Add support for a "fine" barback log level. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: pkg/barback/test/logger_test.dart
diff --git a/pkg/barback/test/logger_test.dart b/pkg/barback/test/logger_test.dart
index 778f42ff2070f9f6eae88bc08cff5e74d4f5b8cb..5c42b2e21a1b007b5d2e5482c71b03642451cc9d 100644
--- a/pkg/barback/test/logger_test.dart
+++ b/pkg/barback/test/logger_test.dart
@@ -17,7 +17,8 @@ main() {
var transformer = new LogTransformer([
"error: This is an error.",
"warning: This is a warning.",
- "info: This is info."
+ "info: This is info.",
+ "fine: This is fine."
]);
initGraph(["app|foo.txt"], {
"app": [[transformer]]
@@ -27,13 +28,15 @@ main() {
buildShouldLog(LogLevel.ERROR, equals("This is an error."));
buildShouldLog(LogLevel.WARNING, equals("This is a warning."));
buildShouldLog(LogLevel.INFO, equals("This is info."));
+ buildShouldLog(LogLevel.FINE, equals("This is fine."));
});
test("logs messages from a transformer group", () {
var transformer = new LogTransformer([
"error: This is an error.",
"warning: This is a warning.",
- "info: This is info."
+ "info: This is info.",
+ "fine: This is fine."
]);
initGraph(["app|foo.txt"], {"app": [
@@ -44,5 +47,6 @@ main() {
buildShouldLog(LogLevel.ERROR, equals("This is an error."));
buildShouldLog(LogLevel.WARNING, equals("This is a warning."));
buildShouldLog(LogLevel.INFO, equals("This is info."));
+ buildShouldLog(LogLevel.FINE, equals("This is fine."));
});
}

Powered by Google App Engine
This is Rietveld 408576698