XinYeYouKu/app/third/dfpOpenSdk/util/file_util_test.go

13 lines
171 B
Go
Raw Normal View History

2024-07-08 18:01:02 +08:00
package util
import "testing"
func TestFileHash(t *testing.T) {
hash := FileHash("file_util")
if hash != "" {
t.Log(hash)
} else {
t.Log("计算hash失败")
}
}