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

Unified Diff: pkg/mdns/test/decode_test.dart

Issue 1427763002: Fix warning and hint int test (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 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/mdns/lib/src/packet.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/mdns/test/decode_test.dart
diff --git a/pkg/mdns/test/decode_test.dart b/pkg/mdns/test/decode_test.dart
index 905a2319e6ea9d71d37d386836481c752ef7627b..f555309bd74b8662404fe04aff2ace1546c91bee 100644
--- a/pkg/mdns/test/decode_test.dart
+++ b/pkg/mdns/test/decode_test.dart
@@ -8,6 +8,7 @@ import 'package:mdns/src/packet.dart';
main() {
testValidPackages();
testBadPackages();
+ testHexDumpList();
}
testValidPackages() {
@@ -37,6 +38,11 @@ testBadPackages() {
}
}
+testHexDumpList() {
+ // Call hexDumpList to get rid of hint.
+ hexDumpList([]);
+}
+
// One address.
var package1 = [
0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x01,
« no previous file with comments | « pkg/mdns/lib/src/packet.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698