(b *testing.B)
| 1561 | } |
| 1562 | |
| 1563 | func BenchmarkDelete1(b *testing.B) { |
| 1564 | bt := WithTemplate(&testTemplate) |
| 1565 | for n := 0; n < b.N; n++ { |
| 1566 | _ = bt.DeleteFrom("artist").Where("name = ?", "Chavela Vargas").Limit(1).String() |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | func BenchmarkDelete2(b *testing.B) { |
| 1571 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected