R/test-all.R
, R/test-getting-started.R
, R/test-driver.R
, and 7 more
test_all.Rd
test_all()
calls all tests defined in this package (see the section
"Tests" below). This function supports running only one test by setting an
environment variable, e.g., set the DBITEST_ONLY_RESULT
to a nonempty
value to run only test_result()
.
test_some()
allows testing one or more tests.
test_all(skip = NULL, run_only = NULL, ctx = get_default_context())
test_some(test, ctx = get_default_context(), dblog = TRUE)
[character()]
A vector of regular expressions to match
against test names; skip test if matching any.
The regular expressions are matched against the entire test name.
[character()]
A vector of regular expressions to match
against test names; run only these tests.
The regular expressions are matched against the entire test name.
[DBItest_context]
A test context as created by
make_context()
.
[character]
A character vector of regular expressions
describing the tests to run.
The regular expressions are matched against the entire test name.
[logical(1)]
Set to FALSE
to disable dblog integration.
Internally ^
and $
are used as prefix and suffix around the
regular expressions passed in the skip
and run_only
arguments.
This function runs the following tests, except the stress tests:
test_getting_started()
:
Getting started with testing
test_driver()
:
Test the "Driver" class
test_connection()
:
Test the "Connection" class
test_result()
:
Test the "Result" class
test_sql()
:
Test SQL methods
test_meta()
:
Test metadata functions
test_transaction()
:
Test transaction functions
test_compliance()
:
Test full compliance to DBI
test_stress()
:
Stress tests (not tested with test_all
)