(b *testing.B)
| 1613 | } |
| 1614 | |
| 1615 | func BenchmarkSelect1(b *testing.B) { |
| 1616 | bt := WithTemplate(&testTemplate) |
| 1617 | for n := 0; n < b.N; n++ { |
| 1618 | _ = bt.Select().From("artist").OrderBy("name DESC").String() |
| 1619 | } |
| 1620 | } |
| 1621 | |
| 1622 | func BenchmarkSelect2(b *testing.B) { |
| 1623 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected