mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
14 lines
184 B
Go
14 lines
184 B
Go
|
|
package v1
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestGetCookieInfoReply_String(t *testing.T) {
|
||
|
|
m := GetCookieInfoReq{
|
||
|
|
Cookie: "==000123000==",
|
||
|
|
}
|
||
|
|
fmt.Println(fmt.Sprintf("%v", m))
|
||
|
|
}
|