(b *testing.B)
| 1675 | } |
| 1676 | |
| 1677 | func BenchmarkUpdate4(b *testing.B) { |
| 1678 | bt := WithTemplate(&testTemplate) |
| 1679 | for n := 0; n < b.N; n++ { |
| 1680 | _ = bt.Update("artist").Set(map[string]string{"name": "Artist"}).Where(db.Cond{"id <": 5}).String() |
| 1681 | } |
| 1682 | } |
| 1683 | |
| 1684 | func BenchmarkUpdate5(b *testing.B) { |
| 1685 | bt := WithTemplate(&testTemplate) |
nothing calls this directly
no test coverage detected
searching dependent graphs…