mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-08-04 14:10:54 -04:00
test case for NewStringLiteral
This commit is contained in:
@@ -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")
|
||||
}
|
||||
Reference in New Issue
Block a user