Nothing
# while (con1 || con2) {
# if ()
# if ()
# }
#
# 1: while !con1 !con2
# 2: while con1 if1
# 3: while con1 if2
# 4: while con1 if1 if2
# 5: while con2 if1
# 6: while con2 if2
# 7: while con2 if1 if2
# 8: while con1 con2 if1
# 9: while con1 con2 if2
# 10: while con1 con2 if1 if2
test_that("regular use", {
skip_if_offline()
skip_if_not(repoCloned)
repo <- Repository$new(path)
files <- repo$getRFiles()
glueIdx <- sapply(files, function(file) {
file$getName() == "glue.R"
})
file <- files[glueIdx][[1]]
funs <- file$getFunctions()
defFuns <- PaRe::getDefinedFunctions(repo)
glueIdx <- sapply(funs, function(fun) {
fun$getName() == "glue"
})
fun <- funs[glueIdx][[1]]
expect_true(length(PaRe:::getMultiLineFun(line = 1, lines = fun$getLines())) == 1)
})
test_that("No closing bracket", {
lines <- "s3_register <- function(generic, class, method = NULL"
expect_true(length(PaRe:::getMultiLineFun(line = 1, lines = lines)) == 1)
})
test_that("Empty string", {
lines <- ""
expect_true(length(PaRe:::getMultiLineFun(line = 1, lines = lines)) == 1)
})
test_that("NA", {
lines <- NA
expect_null(PaRe:::getMultiLineFun(line = 1, lines = lines))
})
test_that("NULL", {
lines <- NULL
expect_error(PaRe:::getMultiLineFun(line = 1, lines = lines))
})
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.