(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestStat_EncodeSumValue(t *testing.T) { |
| 61 | var a = assert.NewAssertion(t) |
| 62 | |
| 63 | var b = metrics.EncodeSumValue(123, 456) |
| 64 | t.Log(b) |
| 65 | |
| 66 | count, sum := metrics.DecodeSumValue(b) |
| 67 | a.IsTrue(count == 123) |
| 68 | a.IsTrue(sum == 456) |
| 69 | } |
nothing calls this directly
no test coverage detected