decode_test.go 465 B

123456789101112131415161718192021222324252627282930313233
  1. package jsonpb
  2. import (
  3. "testing"
  4. )
  5. var bs = `{
  6. "status": {
  7. "code": "SUCCESS"
  8. },
  9. "done": true,
  10. "result": {
  11. "ptTimestampUsec": "1558687721507006",
  12. "level": 2,
  13. "fluencyLevel": 0,
  14. "pronunciationLevel": 0
  15. },
  16. "suggestedActivityId": [],
  17. "preloadContent": {
  18. "activityContent": []
  19. },
  20. "cbParam": {
  21. "previousPart": 4,
  22. "warmed": false,
  23. "ptSubPart": 0
  24. },
  25. "IsWarmup": false
  26. }
  27. `
  28. func TestUnmarshal(t *testing.T) {
  29. }