tests/testthat/test-SIRS_demographics_ode.R

context("SIRS_demographics_ode")



##Model Input
S_0 <- 989
I_0 <- 1
R_0 <- 0
beta <- 3
tau <- 2
chi <- 0.5
mu <- 1/81
dt <- 1

parameters <- c(beta = beta, tau = tau, mu = mu, chi = chi)
inits <- c(S = S_0, I = I_0, R_0 = R_0)

test <- SIRS_demographics_ode(1, inits, parameters)


test_that("SIRS_demographics_ode can correctly return rates of change over one timestep", {
  skip_on_cran()
  expect_known_output(test, file = "../../tests/test-files/SIRS_demographics_ode/test-01.rds")
})

Try the idmodelr package in your browser

Any scripts or data that you put into this service are public.

idmodelr documentation built on Sept. 2, 2022, 5:06 p.m.