17 lines
378 B
Go
17 lines
378 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package fsutils_test
|
|
|
|
import (
|
|
fsutils "github.com/TeaOSLab/EdgeNode/internal/utils/fs"
|
|
"testing"
|
|
)
|
|
|
|
func TestCheckDiskWritingSpeed(t *testing.T) {
|
|
t.Log(fsutils.CheckDiskWritingSpeed())
|
|
}
|
|
|
|
func TestCheckDiskIsFast(t *testing.T) {
|
|
t.Log(fsutils.CheckDiskIsFast())
|
|
}
|