(b *testing.B)
| 1652 | } |
| 1653 | |
| 1654 | func BenchmarkUpdate1(b *testing.B) { |
| 1655 | bt := WithTemplate(&testTemplate) |
| 1656 | for n := 0; n < b.N; n++ { |
| 1657 | _ = bt.Update("artist").Set("name", "Artist").String() |
| 1658 | } |
| 1659 | } |
| 1660 | |
| 1661 | func BenchmarkUpdate2(b *testing.B) { |
| 1662 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected
searching dependent graphs…