Nothing
context("Generate")
#if skipQuarto skip this
test_that("generatePresentationMultiple old works", {
#if skipQuarto skip this on CRAN
if(skipQuarto){
testthat::skip_on_cran('Quarto not found so skipping old generate presentation multiple')
}
savLoc <- file.path(tempdir(), 'example_old')
if(!dir.exists(savLoc)){
dir.create(savLoc)
}
# should have a warning
testthat::expect_warning(generatePresentationMultiple(
server = conDet$server(),
username = conDet$user(),
password = conDet$password(),
dbms = conDet$dbms,
resultsSchema = schema,
targetId = 1,
targetName = 'target',
outcomeIds = 3,
outcomeNames = 'outcome',
comparatorIds = 2,
comparatorNames = 'comp',
title = '',
lead = 'add name',
date = as.character(Sys.Date()),
covariateIds = NULL,
details = list(
studyPeriod = 'All Time',
restrictions = "Age - None"
),
evaluationText = '',
outputLocation = savLoc,
outputName = paste0('presentation_', gsub(':', '_',gsub(' ','_',as.character(date()))),'.html')
))
# ensure report is generated
testthat::expect_true(length(dir(savLoc, pattern = '.html', full.names = TRUE)) > 0)
# clean up and remove file
file.remove(dir(savLoc, pattern = '.html', full.names = TRUE))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.