(b *testing.B)
| 1575 | } |
| 1576 | |
| 1577 | func BenchmarkInsert1(b *testing.B) { |
| 1578 | bt := WithTemplate(&testTemplate) |
| 1579 | for n := 0; n < b.N; n++ { |
| 1580 | _ = bt.InsertInto("artist").Values(10, "Ryuichi Sakamoto").Values(11, "Alondra de la Parra").Values(12, "Haruki Murakami").String() |
| 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | func BenchmarkInsert2(b *testing.B) { |
| 1585 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected