Int64MetricInterface is used to create test double for Int64Metric.
| 23 | |
| 24 | // Int64MetricInterface is used to create test double for Int64Metric. |
| 25 | type Int64MetricInterface interface { |
| 26 | // Record records a measurement for the metric, with provided tags as metric labels. |
| 27 | Record(tags map[string]string, measurement int64) error |
| 28 | } |
| 29 | |
| 30 | // FakeInt64Metric implements Int64MetricInterface. |
| 31 | // FakeInt64Metric can be used as a test double for Int64MetricInterface, allowing |
no outgoing calls
no test coverage detected