# Simulate binary data set.seed(141) n <- 100 truval <- c(0.8, 0.7, 0.6, 0.5, 0.4, -1.43, -0.55, -0.13, -0.72, -1.13) dat <- lavaan::simulateData( "eta =~ 0.8*y1 + 0.7*5y2 + 0.6*y3 + 0.5*y4 + 0.4*y5 y1 | -1.43*t1 y2 | -0.55*t1 y3 | -0.13*t1 y4 | -0.72*t1 y5 | -1.13*t1", ordered = TRUE, sample.nobs = n ) mod <- "eta =~ y1 + y2 + y3 + y4 + y5" test_that("Method: skewnorm", { expect_no_error({ fit <- acfa(mod, dat, ordered = TRUE, verbose = FALSE, nsamp = 3) }) expect_no_error(out <- capture.output(summary(fit))) expect_no_error(out <- plot(fit)) expect_s4_class(fit, "INLAvaan") expect_equal(fit@optim$dx, rep(0, length(coef(fit))), tolerance = 1e-3) })