(t *testing.T)
| 319 | } |
| 320 | |
| 321 | func TestServerApis(t *testing.T) { |
| 322 | |
| 323 | ensureServer() |
| 324 | //_, _, _, _, _, _, _, _ := createServer() |
| 325 | err := runTests(t) |
| 326 | log.Printf("Test ended") |
| 327 | if err != nil { |
| 328 | t.Errorf("test failed %v", err) |
| 329 | } |
| 330 | //log.Printf("it never started in test: %v %v", imapServer, ftpServer) |
| 331 | |
| 332 | log.Printf("Shutdown now") |
| 333 | |
| 334 | } |
| 335 | |
| 336 | //func TestAuth(t *testing.T) { |
| 337 | // |
nothing calls this directly
no test coverage detected