You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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) |
|
}
|
|
|