(t *testing.T)
| 106 | } |
| 107 | |
| 108 | func TestPrepareExpressionWrongVari(t *testing.T) { |
| 109 | input := "abs(mean(offset, 5)) + 1.0 * stddev(missing, 4)" |
| 110 | _, err := prepareExpression(input) |
| 111 | require.Error(t, err) |
| 112 | } |
| 113 | |
| 114 | func TestPrepareExpressionNotEnoughValues(t *testing.T) { |
| 115 | input := "mean(offset, 50)" |
nothing calls this directly
no test coverage detected
searching dependent graphs…