OSDN Git Service

new repo
[bytom/vapor.git] / test / wallet_test.go
1 // +build functional
2
3 package test
4
5 import (
6         "testing"
7
8         log "github.com/sirupsen/logrus"
9 )
10
11 func TestWallet(t *testing.T) {
12         log.SetLevel(log.ErrorLevel)
13         walk(t, walletTestDir, func(t *testing.T, name string, test *walletTestConfig) {
14                 if err := test.Run(); err != nil {
15                         t.Fatal(err)
16                 }
17         })
18 }