(label string, f func())
| 14 | } |
| 15 | |
| 16 | func Run(label string, f func()) { |
| 17 | var tr = Begin(label) |
| 18 | f() |
| 19 | tr.End() |
| 20 | } |
| 21 | |
| 22 | func (this *tracker) End() { |
| 23 | SharedManager.Add(this.label, time.Since(this.startTime).Seconds()*1000) |
no test coverage detected