1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

string list test

This commit is contained in:
v2ray 2016-01-22 00:53:51 +01:00
parent 37a9d8ef50
commit 216faf587c

View File

@ -0,0 +1,21 @@
// +build json
package serial_test
import (
"encoding/json"
"testing"
. "github.com/v2ray/v2ray-core/common/serial"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
)
func TestStringListUnmarshalError(t *testing.T) {
v2testing.Current(t)
rawJson := `1234`
list := new(StringLiteralList)
err := json.Unmarshal([]byte(rawJson), list)
assert.Error(err).IsNotNil()
}