mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -05:00
29 lines
461 B
Go
29 lines
461 B
Go
package serial_test
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
. "v2ray.com/core/common/serial"
|
|
. "v2ray.com/ext/assert"
|
|
)
|
|
|
|
func TestToString(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
s := "a"
|
|
data := []struct {
|
|
Value interface{}
|
|
String string
|
|
}{
|
|
{Value: s, String: s},
|
|
{Value: &s, String: s},
|
|
{Value: errors.New("t"), String: "t"},
|
|
{Value: []byte{'b', 'c'}, String: "[62,63]"},
|
|
}
|
|
|
|
for _, c := range data {
|
|
assert(ToString(c.Value), Equals, c.String)
|
|
}
|
|
}
|