(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestManager_PublishEmotion(t *testing.T) { |
| 18 | type args struct { |
| 19 | Content string |
| 20 | } |
| 21 | m := NewManager(cookie) |
| 22 | gotResult, err := m.EmotionPublish("test", nil) |
| 23 | if err != nil { |
| 24 | t.Fatal(err) |
| 25 | } |
| 26 | t.Logf("gotResult:%#v\n", gotResult) |
| 27 | } |
| 28 | |
| 29 | func TestManager_UploadImage(t *testing.T) { |
| 30 | m := NewManager(cookie) |
nothing calls this directly
no test coverage detected
searching dependent graphs…