influxdb/pkg/metrics/timer_test.go

15 lines
259 B
Go

package metrics
import (
"testing"
"time"
"github.com/influxdata/influxdb/pkg/testing/assert"
)
func TestTimer_Update(t *testing.T) {
var c Timer
c.Update(100 * time.Millisecond)
assert.Equal(t, c.Value(), 100*time.Millisecond, "unexpected value")
}