(b *testing.B)
| 1589 | } |
| 1590 | |
| 1591 | func BenchmarkInsert3(b *testing.B) { |
| 1592 | bt := WithTemplate(&testTemplate) |
| 1593 | for n := 0; n < b.N; n++ { |
| 1594 | _ = bt.InsertInto("artist").Values(map[string]string{"id": "12", "name": "Chavela Vargas"}).Returning("id").String() |
| 1595 | } |
| 1596 | } |
| 1597 | |
| 1598 | func BenchmarkInsert4(b *testing.B) { |
| 1599 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected