test case for NewStringLiteral

pull/82/head
v2ray 2016-02-04 17:55:12 +01:00
parent a0e35673cb
commit d5477e407b
1 changed files with 24 additions and 0 deletions

View File

@ -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")
}