12 lines
154 B
Go
12 lines
154 B
Go
package byteutil
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestIntToBytes(t *testing.T) {
|
|
fmt.Println(IntToBytes(1))
|
|
fmt.Println(BytesToInt(IntToBytes(1)))
|
|
}
|