Description Usage Arguments Details Value See Also Examples
The main purpose of this function is to expose the namespace of a package
when running tests, which allows one to use non-exported objects in the
package without having to resort to the triple colon :::
trick.
1 |
package |
the package name |
dir |
the directory of the test files; by default, it is the directory ‘testit/’ under the current working directory |
The tests are assumed to be under the ‘testit/’ directory by default,
and this function also looks for the ‘tests/testit/’ directory under the
package installation directory when the user-provided dir
does not
exist. The test scripts must be named of the form test-*.R; other R
scripts will not be treated as test files (but may also be useful, e.g. you
can source()
them in tests).
For R CMD check
, this means the test R scripts (‘test-*.R’ or
‘test-*.r’) are under ‘pkg_root/tests/testit/’. The R scripts are
executed with sys.source
in the namespace of the package to be
tested; when an R script is executed, the working directory is the same as
the directory containing this script, and all existing objects in the test
environment will be removed before the code is executed.
NULL
. All test files are executed, unless an error occurs.
The testthat package (much more sophisticated).
1 | ## Not run: test_pkg('testit')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.