library(testthat)
context("Test all methods from model_parser.R")
test_that("parseIfStatement works well (1)", {
line <- "if(ID > (30))TVCL=THETA_7*pow(0.009*TBW, THETA_8)"
ifStatement <- parseStatements(line) %>% getByIndex(1)
expect_equal(ifStatement@condition, "ID > (30)")
expect_equal(ifStatement@equation, Equation("TVCL", "THETA_7*pow(0.009*TBW, THETA_8)"))
})
test_that("parseIfStatement works well (2)", {
line <- " if (ID > (30) ) TVCL = THETA_7*pow(0.009*TBW, THETA_8) "
ifStatement <- parseStatements(line) %>% getByIndex(1)
expect_equal(ifStatement@condition, "ID > (30)")
expect_equal(ifStatement@equation, Equation("TVCL", "THETA_7*pow(0.009*TBW, THETA_8)"))
})
test_that("parseIfStatement works well (3)", {
line <- " if (ID == 30 ) TVCL = THETA_7*pow(0.009*TBW, THETA_8) "
ifStatement <- parseStatements(line) %>% getByIndex(1)
expect_equal(ifStatement@condition, "ID == 30")
expect_equal(ifStatement@equation, Equation("TVCL", "THETA_7*pow(0.009*TBW, THETA_8)"))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.