(t *testing.T)
| 13 | } |
| 14 | |
| 15 | func TestGetVideoSummary(t *testing.T) { |
| 16 | videoSummary, err := GetVideoSummary("BV1ju4y1s7kn") |
| 17 | if err != nil { |
| 18 | t.Fatal(err) |
| 19 | } |
| 20 | t.Logf("%+v\n", videoSummary) |
| 21 | } |
| 22 | |
| 23 | func TestGetDynamicDetail(t *testing.T) { |
| 24 | cfg := NewCookieConfig("config.json") |
nothing calls this directly
no test coverage detected
searching dependent graphs…