123456789101112131415161718192021222324252627282930313233 |
- package jsonpb
- import (
- "testing"
- )
- var bs = `{
- "status": {
- "code": "SUCCESS"
- },
- "done": true,
- "result": {
- "ptTimestampUsec": "1558687721507006",
- "level": 2,
- "fluencyLevel": 0,
- "pronunciationLevel": 0
- },
- "suggestedActivityId": [],
- "preloadContent": {
- "activityContent": []
- },
- "cbParam": {
- "previousPart": 4,
- "warmed": false,
- "ptSubPart": 0
- },
- "IsWarmup": false
- }
- `
- func TestUnmarshal(t *testing.T) {
- }
|