For a given file 'x.R' in the 'R/' directory of a
package, for each function defined in that '.R' file,
make_tests_shells_file() checks if there are examples for
that function detailed in the 'man/' directory (in a '.Rd' file) and if so
creates a shell (skeleton) of a testthat::test_that()
test based on those
examples via make_test_shell(). The created shells are
then written to a corresponding file 'test-x.R' (or 'test-x-examples.R' if
'test-x.R' is already taken) in 'tests/testthat'.
make_test_shells_pkg() runs make_test_shells_file() on every '.R' file in the 'R/' directory of a package.
make_test_shell_fun(
fun,
pkg_dir = ".",
overwrite = FALSE,
e_e = TRUE,
roxytest = FALSE,
open = TRUE,
document = TRUE
)
make_tests_shells_file(
r_file_name,
pkg_dir = ".",
overwrite = FALSE,
e_e = TRUE,
open = TRUE,
document = TRUE
)
make_tests_shells_pkg(
pkg_dir = ".",
overwrite = FALSE,
e_e = TRUE,
open = FALSE,
document = TRUE
)
The name of the function to make a test shell for.
The directory of the R project for this package (defaults to current directory). Note that this is the parent directory of R/.
Overwrite if the test file you're trying to create already exists?
Set this to FALSE
to prevent anything from being put in the
shell of a testthat::expect_equal()
statement.
Copy roxytest
package @testexamples
code to clipboard
instead of creating file in tests/testthat
?
Open the created test file in your editor after it is created?
Run roxygen2::roxygenize()
to update package documentation
before starting?
The name of the '.R' file within 'R/'. There's no need to specify the file path (as 'R/x.R', but you can do this if you want), you can just use 'x.R' for whichever file 'x' it is. You can also omit the '.R' for convenience, however using the wrong case (e.g. '.r' when the file actually has the extension '.R') will produce an error.
The shell of the test file is written into tests/testthat. It has the same name as the .R file it was created from except it has "test_" tacked onto the front.
if (FALSE) { # \dontrun{
pkg_dir <- "~/mylilpkg"
usethis::create_package(pkg_dir, rstudio = FALSE, open = FALSE)
fs::file_copy(
system.file("extdata", c("detect.R", "match.R"),
package = "exampletestr"
),
paste0(pkg_dir, "/R")
)
make_test_shell_fun("str_detect()", pkg_dir,
document = TRUE, roxytest = TRUE
)
make_test_shell_fun("str_detect()", pkg_dir,
document = TRUE, open = FALSE
)
make_tests_shells_file("detect", pkg_dir,
document = FALSE, open = FALSE
)
make_tests_shells_pkg(pkg_dir,
overwrite = TRUE, document = FALSE
)
fs::dir_delete(pkg_dir)
} # }