mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 22:30:28 +08:00
17 lines
443 B
Go
17 lines
443 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package numberutils
|
|
|
|
import "testing"
|
|
|
|
func TestFormatBytes(t *testing.T) {
|
|
t.Log(FormatBytes(1))
|
|
t.Log(FormatBytes(1000))
|
|
t.Log(FormatBytes(1_000_000))
|
|
t.Log(FormatBytes(1_000_000_000))
|
|
t.Log(FormatBytes(1_000_000_000_000))
|
|
t.Log(FormatBytes(1_000_000_000_000_000))
|
|
t.Log(FormatBytes(1_000_000_000_000_000_000))
|
|
t.Log(FormatBytes(9_000_000_000_000_000_000))
|
|
}
|