(f *testing.F)
| 141 | } |
| 142 | |
| 143 | func FuzzPrepareExpression(f *testing.F) { |
| 144 | f.Add("mean(clockaccuracy, 5) + abs(mean(offset, 5)) + 1.0 * stddev(offset, 4) + 1.0 * stddev(delay, 4) + 1.0 * stddev(freq, 5)") |
| 145 | f.Add("abs(mean(offset, 5)) + 1.0 * stddev(missing, 4)") |
| 146 | f.Add("mean(offset, 50)") |
| 147 | |
| 148 | f.Fuzz(func(t *testing.T, input string) { |
| 149 | _, _ = prepareExpression(input) |
| 150 | }) |
| 151 | } |
| 152 | |
| 153 | // TestGradualWindowByteIdentityAtFullRing locks the invariant that the new k(n) W expression reduces |
| 154 | // bit-for-bit to the legacy "mean(m, N) + 4.0 * stddev(m, N)" once the ring is full (n == N). |
nothing calls this directly
no test coverage detected
searching dependent graphs…