HasSamples returns true if the group has samples
()
| 263 | |
| 264 | // HasSamples returns true if the group has samples |
| 265 | func (sg *SampleGroup) HasSamples() bool { |
| 266 | return len(sg.Samples) > 0 |
| 267 | } |
| 268 | |
| 269 | // Report returns a human readable report of the samples taken in the Benchmark |
| 270 | func (bm *Benchmark) Report() string { |