Files
go-utils/byteutil/util_test.go
2023-10-28 20:06:50 +08:00

12 lines
154 B
Go

package byteutil
import (
"fmt"
"testing"
)
func TestIntToBytes(t *testing.T) {
fmt.Println(IntToBytes(1))
fmt.Println(BytesToInt(IntToBytes(1)))
}