report_test.go 221 B

12345678
  1. package server
  2. import "testing"
  3. func TestReportCh(t *testing.T) {
  4. ch := &Channel{Key: "test_key", Mid: 19158909, IP: "127.0.0.1", Platform: "web", Room: &Room{ID: "video://111/222", AllOnline: 100}}
  5. reportCh(1, ch)
  6. }