Working on test suite

This commit is contained in:
obscuren
2014-10-15 00:41:00 +02:00
parent 3d177be73e
commit 266d212094
7 changed files with 228 additions and 0 deletions

15
tests/helper/init.go Normal file
View File

@ -0,0 +1,15 @@
package helper
import (
"log"
"os"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethutil"
)
func init() {
ethlog.AddLogSystem(ethlog.NewStdLogSystem(os.Stdout, log.LstdFlags, ethlog.LogLevel(4)))
ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "")
}