(b *testing.B)
| 1596 | } |
| 1597 | |
| 1598 | func BenchmarkInsert4(b *testing.B) { |
| 1599 | bt := WithTemplate(&testTemplate) |
| 1600 | for n := 0; n < b.N; n++ { |
| 1601 | _ = bt.InsertInto("artist").Values(map[string]interface{}{"name": "Chavela Vargas", "id": 12}).String() |
| 1602 | } |
| 1603 | } |
| 1604 | |
| 1605 | func BenchmarkInsert5(b *testing.B) { |
| 1606 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected