mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
9 lines
221 B
Go
9 lines
221 B
Go
|
|
package server
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestReportCh(t *testing.T) {
|
||
|
|
ch := &Channel{Key: "test_key", Mid: 19158909, IP: "127.0.0.1", Platform: "web", Room: &Room{ID: "video://111/222", AllOnline: 100}}
|
||
|
|
reportCh(1, ch)
|
||
|
|
}
|