github.com/Bytom/bytom@v1.1.2-0.20210127130405-ae40204c0b09/test/chain_test.go (about) 1 // +build functional 2 3 package test 4 5 import ( 6 "testing" 7 ) 8 9 func TestChain(t *testing.T) { 10 walk(t, chainTestDir, func(t *testing.T, name string, test *chainTestConfig) { 11 if err := test.Run(); err != nil { 12 t.Fatal(err) 13 } 14 }) 15 }