()
| 40 | func (t *testDb) IsEmpty() bool { return false } |
| 41 | |
| 42 | func testServer() *Server { |
| 43 | return &Server{cache: NewCache(100), gr: &testDb{}, LookupAddr: lookupAddr, LookupPort: lookupPort} |
| 44 | } |
| 45 | |
| 46 | func httpGet(url string, acceptMediaType string, userAgent string) (string, int, error) { |
| 47 | r, err := http.NewRequest("GET", url, nil) |
no test coverage detected