(b *testing.B)
| 1582 | } |
| 1583 | |
| 1584 | func BenchmarkInsert2(b *testing.B) { |
| 1585 | bt := WithTemplate(&testTemplate) |
| 1586 | for n := 0; n < b.N; n++ { |
| 1587 | _ = bt.InsertInto("artist").Values(map[string]string{"id": "12", "name": "Chavela Vargas"}).String() |
| 1588 | } |
| 1589 | } |
| 1590 | |
| 1591 | func BenchmarkInsert3(b *testing.B) { |
| 1592 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected