good morning!!!!

Skip to content
Snippets Groups Projects
Commit d9ccbf04 authored by Taylor Gerring's avatar Taylor Gerring
Browse files

Move test bootstrap to main_test.go

parent cd94b5ff
No related branches found
No related tags found
No related merge requests found
package ethutil
import (
checker "gopkg.in/check.v1"
"testing"
)
func Test(t *testing.T) { checker.TestingT(t) }
package ethutil
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
data2 := 2192
data3 := 12
......
......@@ -3,11 +3,8 @@ package ethutil
import (
checker "gopkg.in/check.v1"
"math/big"
"testing"
)
func Test(t *testing.T) { checker.TestingT(t) }
type ValueSuite struct{}
var _ = checker.Suite(&ValueSuite{})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment