(b *testing.B)
| 1568 | } |
| 1569 | |
| 1570 | func BenchmarkDelete2(b *testing.B) { |
| 1571 | bt := WithTemplate(&testTemplate) |
| 1572 | for n := 0; n < b.N; n++ { |
| 1573 | _ = bt.DeleteFrom("artist").Where("id > 5").String() |
| 1574 | } |
| 1575 | } |
| 1576 | |
| 1577 | func BenchmarkInsert1(b *testing.B) { |
| 1578 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected