tcp_test.go 371 B

123456789101112131415161718192021222324252627282930
  1. package test
  2. import (
  3. //"Yunlot/Handle/TcpServer"
  4. "net"
  5. "time"
  6. )
  7. import (
  8. "testing"
  9. )
  10. func TestTCP(t *testing.T) {
  11. //go TcpServer.TcpServer()
  12. //
  13. ln, err := net.Listen("tcp", ":111")
  14. if err != nil {
  15. // handle error
  16. }
  17. for {
  18. _, err := ln.Accept()
  19. if err != nil {
  20. // handle error
  21. }
  22. //go handleConnection(conn)
  23. }
  24. time.Sleep(time.Second * 1000)
  25. }