(b *testing.B)
| 205 | } |
| 206 | |
| 207 | func BenchmarkDecimal_IsInteger(b *testing.B) { |
| 208 | d := RequireFromString("12.000") |
| 209 | |
| 210 | b.ReportAllocs() |
| 211 | b.StartTimer() |
| 212 | for i := 0; i < b.N; i++ { |
| 213 | d.IsInteger() |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | func BenchmarkDecimal_Pow(b *testing.B) { |
| 218 | d1 := RequireFromString("5.2") |
nothing calls this directly
no test coverage detected
searching dependent graphs…