1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 11:05:24 +00:00
v2fly/common/serial/typed_message_test.go
2018-11-13 22:46:01 +01:00

24 lines
367 B
Go

package serial_test
import (
"testing"
. "v2ray.com/core/common/serial"
. "v2ray.com/ext/assert"
)
func TestGetInstance(t *testing.T) {
assert := With(t)
p, err := GetInstance("")
assert(p, IsNil)
assert(err, IsNotNil)
}
func TestConvertingNilMessage(t *testing.T) {
x := ToTypedMessage(nil)
if x != nil {
t.Error("expect nil, but actually not")
}
}