#-------------------------------------------------------------------------------
# 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 <http://www.gnu.org/licenses/>.
#-------------------------------------------------------------------------------
#
# Set up
#
context("ds.rowColCalc::smk::setup")
connect.studies.dataset.cnsim(list("LAB_TSC", "LAB_HDL"))
test_that("setup", {
ds_expect_variables(c("D"))
})
#
# Tests
#
context("ds.rowColCalc::smk")
ds.rowColCalc(x='D', operation="rowSums", newobj="rsum_hdl_tsc")
res <- ds.exists('rsum_hdl_tsc')
test_that("rowColCalc_exists", {
expect_length(res, 3)
expect_true(res$sim1)
expect_true(res$sim2)
expect_true(res$sim3)
})
context("ds.rowColCalc::smk::no newobj")
ds.rowColCalc(x='D', operation="rowSums")
res <- ds.exists('rowcolcalc.newobj')
test_that("rowColCalc_out_exists", {
expect_length(res, 3)
expect_true(res$sim1)
expect_true(res$sim2)
expect_true(res$sim3)
})
#
# Tear down
#
context("ds.rowColCalc::smk::shutdown")
test_that("shutdown", {
ds_expect_variables(c("D", "rsum_hdl_tsc", "rowcolcalc.newobj"))
})
disconnect.studies.dataset.cnsim()
context("ds.rowColCalc::smk::done")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.