R Under development (unstable) (2026-02-23 r89469 ucrt) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(testthat) > library(tidyLPA) Loading required package: tidySEM Registered S3 method overwritten by 'tidyLPA': method from print.LRT tidySEM You can use the function citation('tidyLPA') to create a citation for the use of {tidyLPA}. Mplus is not installed. Use only package = 'mclust' when calling estimate_profiles(). Attaching package: 'tidyLPA' The following objects are masked from 'package:tidySEM': get_data, get_estimates, get_fit, poms > options("test_mplus" = FALSE) > if(file.exists("test_local.R")) source("test_local.R") > # To run all mplus tests, run the code below once to create a file that is not > # tracked by git, which toggles the option to run mplus tests: > # writeLines('options("test_mplus" = TRUE)', con = "tests/test_local.R") > test_check("tidyLPA") [ FAIL 0 | WARN 1 | SKIP 4 | PASS 11 ] ══ Skipped tests (4) ═══════════════════════════════════════════════════════════ • empty test (4): , , , [ FAIL 0 | WARN 1 | SKIP 4 | PASS 11 ] > # Clean up after test_mplus > if(getOption("test_mplus")){ + remove_files <- list.files(pattern = "\\.(inp|out|dat|log)$", full.names = TRUE) + if(length(remove_files) > 0){ + invisible(file.remove(remove_files)) + } + } > > proc.time() user system elapsed 23.95 1.28 25.68