#------------------------------------------------------------------------------- # Copyright (c) 2018-2022 University of Newcastle upon Tyne. All rights reserved. # # This program and the accompanying materials # are made available under the terms of the GNU Public License v3.0. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . #------------------------------------------------------------------------------- # # Set up # context("ds.names::smk::setup") connect.studies.dataset.cnsim(list("LAB_TSC", "DIS_DIAB", "PM_BMI_CONTINUOUS", "LAB_HDL", "GENDER")) test_that("setup", { ds_expect_variables(c("D")) }) # # Tests # context("ds.names::smk") test_that("level_names", { myobjects <- c('D$LAB_TSC', 'D$LAB_HDL') res_list <- ds.list(x=myobjects, newobj='my_newobj') res <- ds.names('my_newobj') expect_length(res, 3) expect_length(res$sim1, 2) expect_equal(res$sim1[1], 'LAB_TSC') expect_equal(res$sim1[2], 'LAB_HDL') expect_length(res$sim3, 2) expect_equal(res$sim2[1], 'LAB_TSC') expect_equal(res$sim2[2], 'LAB_HDL') expect_length(res$sim3, 2) expect_equal(res$sim3[1], 'LAB_TSC') expect_equal(res$sim3[2], 'LAB_HDL') }) # # Tear down # context("ds.names::smk::shutdown") test_that("shutdown", { ds_expect_variables(c("D", "my_newobj")) }) disconnect.studies.dataset.cnsim() context("ds.names::smk::done")