wheat-cache/pkg/util/memory_test.go

11 lines
121 B
Go
Raw Normal View History

2021-09-27 11:29:47 +08:00
package util
import (
"fmt"
"testing"
)
func TestParseSizeToBit(t *testing.T) {
fmt.Print(ParseSizeToBit("18KB"))
}