github.com/bytom/bytom@v1.1.2-0.20221014091027-bbcba3df6075/test/wallet_test.go (about) 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 }