mirror of
https://github.com/yv1ing/rdp_channel.git
synced 2025-09-16 14:59:08 +08:00
12 lines
151 B
Go
12 lines
151 B
Go
package app
|
|
|
|
import "testing"
|
|
|
|
func TestServer(t *testing.T) {
|
|
s := NewServer("0.0.0.0", 3388)
|
|
err := s.Start()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|