Commit d9ccbf04 authored by Taylor Gerring's avatar Taylor Gerring

Move test bootstrap to main_test.go

parent cd94b5ff
package ethutil
import (
checker "gopkg.in/check.v1"
"testing"
)
func Test(t *testing.T) { checker.TestingT(t) }
package ethutil package ethutil
import ( import (
"testing" checker "gopkg.in/check.v1"
) )
func TestStorageSizeString(t *testing.T) { type SizeSuite struct{}
var _ = checker.Suite(&SizeSuite{})
func (s *SizeSuite) TestStorageSizeString(c *checker.C) {
data1 := 2381273 data1 := 2381273
data2 := 2192 data2 := 2192
data3 := 12 data3 := 12
......
...@@ -3,11 +3,8 @@ package ethutil ...@@ -3,11 +3,8 @@ package ethutil
import ( import (
checker "gopkg.in/check.v1" checker "gopkg.in/check.v1"
"math/big" "math/big"
"testing"
) )
func Test(t *testing.T) { checker.TestingT(t) }
type ValueSuite struct{} type ValueSuite struct{}
var _ = checker.Suite(&ValueSuite{}) var _ = checker.Suite(&ValueSuite{})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment