OSDN Git Service

Merge branch 'dev' into dev-verify
[bytom/bytom.git] / test / wallet_test.go
1 // +build functional
2
3 package test
4
5 import (
6         "testing"
7 )
8
9 func TestWallet(t *testing.T) {
10         walk(t, walletTestDir, func(t *testing.T, name string, test *walletTestConfig) {
11                 if err := test.Run(); err != nil {
12                         t.Fatal(err)
13                 }
14         })
15 }