mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
12 lines
128 B
Go
12 lines
128 B
Go
package bytex
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestParseSize(t *testing.T) {
|
|
res, _ := ParseSize("1MB")
|
|
fmt.Println(res)
|
|
}
|