(b *testing.B)
| 79 | } |
| 80 | |
| 81 | func BenchmarkStorage_DeliveryZstd(b *testing.B) { |
| 82 | randomKey := "rcpt-" + strconv.FormatInt(time.Now().UnixNano(), 10) + "@example.org" |
| 83 | |
| 84 | be := createTestDB(b, "zstd") |
| 85 | if err := be.CreateIMAPAcct(randomKey); err != nil { |
| 86 | b.Fatal(err) |
| 87 | } |
| 88 | |
| 89 | testutils.BenchDelivery(b, be, "sender@example.org", []string{randomKey}) |
| 90 | } |
nothing calls this directly
no test coverage detected