(t *testing.T)
| 6588 | } |
| 6589 | |
| 6590 | func TestPrepareTrendGrowth(t *testing.T) { |
| 6591 | assert.Equal(t, [][]float64(nil), prepareTrendGrowthMtxX([][]float64{{0, 0}, {0, 0}})) |
| 6592 | assert.Equal(t, [][]float64(nil), prepareTrendGrowthMtxY(false, [][]float64{{0, 0}, {0, 0}})) |
| 6593 | info, err := prepareTrendGrowth(false, [][]float64{{0, 0}, {0, 0}}, [][]float64{{0, 0}, {0, 0}}) |
| 6594 | assert.Nil(t, info) |
| 6595 | assert.Equal(t, newErrorFormulaArg(formulaErrorNUM, formulaErrorNUM), err) |
| 6596 | } |
| 6597 | |
| 6598 | func TestCalcColRowQRDecomposition(t *testing.T) { |
| 6599 | assert.False(t, calcRowQRDecomposition([][]float64{{0, 0}, {0, 0}}, []float64{0, 0}, 1, 0)) |
nothing calls this directly
no test coverage detected