mirror of https://github.com/v2ray/v2ray-core
test case for typed message
parent
6239647336
commit
097cdf01d6
|
@ -0,0 +1,16 @@
|
||||||
|
package serial_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
. "v2ray.com/core/common/serial"
|
||||||
|
"v2ray.com/core/testing/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetInstance(t *testing.T) {
|
||||||
|
assert := assert.On(t)
|
||||||
|
|
||||||
|
p, err := GetInstance("")
|
||||||
|
assert.Pointer(p).IsNil()
|
||||||
|
assert.Error(err).IsNotNil()
|
||||||
|
}
|
Loading…
Reference in New Issue