(t *testing.T)
| 53 | } |
| 54 | |
| 55 | func TestInvalidPort(t *testing.T) { |
| 56 | s := NewServer("1.1.1.1:99999999999999999999999999999") |
| 57 | if s != nil { |
| 58 | t.Fatalf("%v", s) |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func TestAuthSign(t *testing.T) { |
| 63 | s := NewServer(".X") |
nothing calls this directly
no test coverage detected
searching dependent graphs…