d1 / old /util /utils_test.go
sanbo
update sth. at 2025-02-06 17:45:33
1214fba
raw
history blame contribute delete
150 Bytes
package util
import (
"fmt"
"testing"
)
func TestRandomHexadecimalString(t *testing.T) {
var str = RandomHexadecimalString()
fmt.Println(str)
}