TDO debug tests
[talweg.git] / pkg / tests / testthat / test-computeFilaments.R
index 6ddd2c5..6169a77 100644 (file)
@@ -4,15 +4,22 @@ test_that("output is as expected on simulated series",
 {
        data = getDataTest(150)
 
+
+
+
+#TODO: debug
+
+
+
        # index 144-1 == 143 : serie type 2
-       pred = computeForecast(data, 144, "Neighbors", "Zero", predict_from=8,
+       pred = computeForecast(data, 143, "Neighbors", "Zero", predict_from=8,
                horizon=length(data$getSerie(1)), simtype="endo", local=FALSE, h_window=1)
        f = computeFilaments(data, pred, 1, 8, limit=60, plot=FALSE)
 
        # Expected output: 50-3-10 series of type 2, then 23 series of type 3 (closest next)
        expect_identical(length(f$neighb_indices), as.integer(60))
        expect_identical(length(f$colors), as.integer(60))
-       expect_equal(f$index, 144)
+       expect_equal(f$index, 143)
        expect_true(all(I(f$neighb_indices) >= 2))
        for (i in 1:37)
        {