(t *testing.T)
| 60 | ) |
| 61 | |
| 62 | func newServer(t *testing.T) *cstServer { |
| 63 | var s cstServer |
| 64 | s.Server = httptest.NewServer(cstHandler{t}) |
| 65 | s.Server.URL += cstRequestURI |
| 66 | s.URL = makeWsProto(s.Server.URL) |
| 67 | return &s |
| 68 | } |
| 69 | |
| 70 | func newTLSServer(t *testing.T) *cstServer { |
| 71 | var s cstServer |
no test coverage detected