mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
18 lines
406 B
Go
18 lines
406 B
Go
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package sizes_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils/sizes"
|
||
|
|
"github.com/iwind/TeaGo/assert"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestSizes(t *testing.T) {
|
||
|
|
var a = assert.NewAssertion(t)
|
||
|
|
a.IsTrue(sizes.K == 1024)
|
||
|
|
a.IsTrue(sizes.M == 1024*1024)
|
||
|
|
a.IsTrue(sizes.G == 1024*1024*1024)
|
||
|
|
a.IsTrue(sizes.T == 1024*1024*1024*1024)
|
||
|
|
}
|