OSDN Git Service

Hulk did something
[bytom/vapor.git] / test / chain_test.go
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 }