github.com/tursom/GoCollections@v0.3.10/util/b62/base62_test.go (about)

     1  package b62
     2  
     3  import (
     4  	"math"
     5  	"testing"
     6  )
     7  
     8  func TestBase62(t *testing.T) {
     9  	encode := Encode(math.MaxUint64)
    10  	if Decode(encode) != math.MaxUint64 {
    11  		t.Fatal(Decode(encode))
    12  	}
    13  }