OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / github.com / btcsuite / btcd / wire / protocol_test.go
diff --git a/vendor/github.com/btcsuite/btcd/wire/protocol_test.go b/vendor/github.com/btcsuite/btcd/wire/protocol_test.go
deleted file mode 100644 (file)
index db9991f..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2013-2016 The btcsuite developers
-// Use of this source code is governed by an ISC
-// license that can be found in the LICENSE file.
-
-package wire
-
-import "testing"
-
-// TestServiceFlagStringer tests the stringized output for service flag types.
-func TestServiceFlagStringer(t *testing.T) {
-       tests := []struct {
-               in   ServiceFlag
-               want string
-       }{
-               {0, "0x0"},
-               {SFNodeNetwork, "SFNodeNetwork"},
-               {SFNodeGetUTXO, "SFNodeGetUTXO"},
-               {SFNodeBloom, "SFNodeBloom"},
-               {SFNodeWitness, "SFNodeWitness"},
-               {0xffffffff, "SFNodeNetwork|SFNodeGetUTXO|SFNodeBloom|SFNodeWitness|0xfffffff0"},
-       }
-
-       t.Logf("Running %d tests", len(tests))
-       for i, test := range tests {
-               result := test.in.String()
-               if result != test.want {
-                       t.Errorf("String #%d\n got: %s want: %s", i, result,
-                               test.want)
-                       continue
-               }
-       }
-}
-
-// TestBitcoinNetStringer tests the stringized output for bitcoin net types.
-func TestBitcoinNetStringer(t *testing.T) {
-       tests := []struct {
-               in   BitcoinNet
-               want string
-       }{
-               {MainNet, "MainNet"},
-               {TestNet, "TestNet"},
-               {TestNet3, "TestNet3"},
-               {SimNet, "SimNet"},
-               {0xffffffff, "Unknown BitcoinNet (4294967295)"},
-       }
-
-       t.Logf("Running %d tests", len(tests))
-       for i, test := range tests {
-               result := test.in.String()
-               if result != test.want {
-                       t.Errorf("String #%d\n got: %s want: %s", i, result,
-                               test.want)
-                       continue
-               }
-       }
-}