quorum/ethutil/size_test.go

13 lines
176 B
Go
Raw Normal View History

2014-08-25 03:53:06 -07:00
package ethutil
import (
"fmt"
"testing"
)
func TestSize(t *testing.T) {
fmt.Println(StorageSize(2381273))
fmt.Println(StorageSize(2192))
fmt.Println(StorageSize(12))
}