summaryrefslogtreecommitdiffstats
path: root/metrics/src/test/java/com/yahoo/metrics/DummyTimer.java
blob: 8264d8e00ebab083c078097f2d0605bc6397b124 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.metrics;

/**
 * @author thomasg
 */
public class DummyTimer extends Timer {
    long ms = 0;

    public long milliSecs() { return ms; }
}