瀏覽代碼

test case for NewStringLiteral

v2ray 9 年之前
父節點
當前提交
d5477e407b
共有 1 個文件被更改,包括 24 次插入0 次删除
  1. 24 0
      common/serial/string_test.go

+ 24 - 0
common/serial/string_test.go

@@ -0,0 +1,24 @@
+package serial_test
+
+import (
+	"testing"
+
+	. "github.com/v2ray/v2ray-core/common/serial"
+	v2testing "github.com/v2ray/v2ray-core/testing"
+	"github.com/v2ray/v2ray-core/testing/assert"
+)
+
+type TestString struct {
+	value string
+}
+
+func (this *TestString) String() string {
+	return this.value
+}
+
+func TestNewStringSerial(t *testing.T) {
+	v2testing.Current(t)
+
+	testString := &TestString{value: "abcd"}
+	assert.String(NewStringLiteral(testString)).Equals("abcd")
+}