mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
21 lines
368 B
Go
21 lines
368 B
Go
package serial_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/buf"
|
|
. "v2ray.com/core/common/serial"
|
|
. "v2ray.com/ext/assert"
|
|
)
|
|
|
|
func TestUint32(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
x := uint32(458634234)
|
|
s1 := Uint32ToBytes(x, []byte{})
|
|
s2 := buf.New()
|
|
common.Must(s2.AppendSupplier(WriteUint32(x)))
|
|
assert(s1, Equals, s2.Bytes())
|
|
}
|